参数
类型
默认
说明
show
Boolean
false
是否显示,双向绑定
双向绑定
text
String or DOM
Loading
提示文字,与默认slot作用一致
名字
默认slot
提示文字,因和text属性功能一致,因此可以二选一
``` vux height=450 components=Loading,Group,Switch
export default { methods: { delayHide () { setTimeout(() => { this.show = false }, 5000) } }, data () { return { show: false, text1: 'Hello world' } } } ```
Last updated 7 years ago