摘要:
自定义一个TabBar组件: <template> <div class="tab-bar"> <div v-for="(item,index) in tabList" :key="index" :class="['common',{active:currentIndex index}]" @cli 阅读全文
摘要:
异步组件和路由懒加载的原理比较像,路由懒加载是将router.js中的路由通过懒加载的方式引入进来从而提升性能,异步组件是那些没有当做路由去使用的组件,如果需要提升这部分组件加载的性能,需要将它的引入方式由同步改为异步。 1、定义一个List.vue: <template> <div>这是一个列表的 阅读全文
摘要:
1、安装: npm install vue-awesome-swiper@3 --save-dev 我的版本是: "vue": "^2.6.11" "vue-awesome-swiper": "^3.1.3" 2、使用: <template> <div class="recommendPage"> 阅读全文