/** * 顶部header */ Vue.component("carousel-element", { template: `
{{item.text}}
`, props: { data:{ type:Array }, height:{ type: Number } }, data() { return { } }, mounted(){ this.init() }, methods: { init(){ }, }, watch:{ } })