Vue 组件动态参数
动态属性
1 | <MyCarousel v-bind="shouldAutoplay ? { autoplayInterval: 3000 } : {}" /> |
组合多个条件对象时,… 就会有用:
1 | <MyCarousel v-bind="{ |
动态 Style
1 | <template> |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 边缘坐标のWasteland!
评论
1 | <MyCarousel v-bind="shouldAutoplay ? { autoplayInterval: 3000 } : {}" /> |
组合多个条件对象时,… 就会有用:
1 | <MyCarousel v-bind="{ |
1 | <template> |