0.0.8 • Published 4 years ago
zcj-swiper-zcj v0.0.8
张超军框架
Project install
npm install zcj-swiper-zcj --save
使用
全局应用插件
import ZcjSwiper from 'zcj-swiper-zcj'
Vue.use(ZcjSwiper)
vue模板可以按照这个方式使用
<ZcjSwiper :config="config"></ZcjSwiper>
安照下面的方式配置
export default {
name: 'Home',
data() {
return {
config: {
loop: true,
size: {
width: "200px",
height: "50px",
background: "skyblue"
}
}
}
},
}