atui
Version:
components built with Vue.js
47 lines (39 loc) • 779 B
Markdown
order: 0
title:
zh-CN: 基本
en-US: Type
## zh-CN
基本的切换,默认是横向滚动切换
## en-US
````jsx
<carousel height="300px" control-btn @before-change="beforeChange" @after-change="afterChange">
<slide>
<img src="http://placehold.it/400x300?text=one">
</slide>
<slide>
<img src="http://placehold.it/400x300?text=two">
</slide>
<slide>
<img src="http://placehold.it/400x300?text=three">
</slide>
</carousel>
````
````vue-script
new Vue({
el: 'body',
components: {
carousel: atui.Carousel,
slide: atui.Carousel.CSlide
},
methods: {
beforeChange (slide) {
console.log('before',slide)
},
afterChange (slide) {
console.log('after',slide)
}
}
})
````