UNPKG

@mypui/myp-ui

Version:

第一个高效且强悍的nvue开源组件库。做最好、最顺手的nvue组件库

20 lines (19 loc) 379 B
export default { methods: { mypShowLoading(info) { const loadingIns = this.$refs['myp-loading'] if (loadingIns) { loadingIns.show(info) } else { const that = this setTimeout(()=>{ that.$refs['myp-loading'].show(info) }, 0) } }, mypHideLoading() { const loadingIns = this.$refs['myp-loading'] loadingIns && loadingIns.hide() } } }