65 lines
1.3 KiB
Vue
65 lines
1.3 KiB
Vue
<template>
|
|
<article>
|
|
<section>
|
|
<h4>Index</h4>
|
|
<veui-number-input
|
|
v-model="index"
|
|
:min="0"
|
|
:max="items.length - 1"
|
|
/>
|
|
</section>
|
|
<section>
|
|
<veui-carousel
|
|
:datasource="items"
|
|
:index.sync="index"
|
|
/>
|
|
</section>
|
|
</article>
|
|
</template>
|
|
|
|
<script>
|
|
import { Carousel, NumberInput } from 'veui'
|
|
|
|
export default {
|
|
components: {
|
|
'veui-carousel': Carousel,
|
|
'veui-number-input': NumberInput
|
|
},
|
|
data () {
|
|
return {
|
|
items: [
|
|
{
|
|
src:
|
|
'https://ecmb.bdimg.com/public01/one-design/2b77cc4a4c5c906993c0e512f3ddaf03.jpg',
|
|
alt: 'A cute kitty looking at you with its greenish eyes.',
|
|
label: 'Cat'
|
|
},
|
|
{
|
|
src:
|
|
'https://ecmb.bdimg.com/public01/one-design/6fedc62b9221846ce5114c7447622e47.jpeg',
|
|
alt: 'A common kingfisher flying above river.',
|
|
label: 'Kingfisher'
|
|
},
|
|
{
|
|
src:
|
|
'https://ecmb.bdimg.com/public01/one-design/e1b6473c898d9e456452ee79d7533a86.jpeg',
|
|
alt: 'A white and gray dolphin in blue water.',
|
|
label: 'Dolphin'
|
|
}
|
|
],
|
|
index: 0
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
h4 {
|
|
margin: 0 0 10px;
|
|
}
|
|
|
|
section {
|
|
margin-bottom: 10px;
|
|
}
|
|
</style>
|