目录
创建Swiper组件
在pages/index目录下的hml文件中创建一个Swiper组件。
<!-- xxx.hml--> <div class="container"> <swiper> <div class="item" style="background-color: #bf45ea;"> <text>item1</text> </div> <div class="item" style="background-color: #088684;"> <text>item2</text> </div> <div class="item" style="background-color: #7786ee;"> <text>item3</text> </div> </swiper&