@mypui/myp-ui
Version:
第一个高效且强悍的nvue开源组件库。做最好、最顺手的nvue组件库
16 lines (15 loc) • 369 B
JavaScript
export default {
methods: {
mypShowToast(info, interval=null, finish=null, errorOptions=null) {
const toastIns = this.$refs['myp-toast']
if (toastIns) {
toastIns.show(info, interval, finish, errorOptions)
} else {
const that = this
setTimeout(()=>{
that.$refs['myp-toast'].show(info, interval, finish, errorOptions)
}, 0)
}
}
}
}