ViewUIPlus
ViewUIPlus copied to clipboard
【Bug】Spin组件
在组件的onMounted调用this.$Spin.show(),然后再关闭this.$Spin.hide(),控制台报错。
export default {
mounted () {
this.$Spin.show()
setTimeout(() => {
this.$Spin.hide()
}, 3000)
}
}