/** * 顶部header */ Vue.component("dumbwaiter-1", { template: `
{{value.name}}

吊笼尺寸/m

{{value.cageSize}}

额定载重量

{{value.loadCapacity}} Kg

额定乘客人数

{{value.numberPeople}}

最大提升高度

{{value.liftingHeight}} m

额定运行速度

{{value.runningSpeed}} m/min

进场时间

{{value.enterTime}}
`, props: { value:{ type:Object }, }, data() { return { } }, mounted(){ //this.animation() }, methods: { animation(){ }, }, watch:{ } })