Does WeChat Mini Programs quote weui with div or view tags?

weui template uses div

<div class="weui-tab">
    <div class="weui-tab__panel">
        <div>Page 1</div>
        <div style="display:none">Page 2</div>
        <div style="display:none">Page 3</div>
    </div>
    <div class="weui-tabbar">
        
    </div>
</div

Mini Program is a self-encapsulated container view. Could you tell me how to use it? I just started to study, but I haven"t started yet. I didn"t find anyone on the Internet to talk about it. Thank you


use the view tag to view the official document. For beginners, you can take a look at my skill training project, which was also written when I first learned Mini Program. https://github.com/Ghostdar/w.


Mini Program can't use div, internally but can only use view,. If you want to use weiui, you can class with the same class name


you can only use view


Mini Program can use div, but it will become an inline element

.
Menu