vue2-easy-loading
v1.0.0
Published
一个优雅的 Vue2 EasyLoading 插件
Readme
一个优雅的 Vue2 EasyLoading 插件
import VueLoading from 'vue2-easy-loading'
Vue.use(VueLoading, {
text: 'custom text...',
lineColor:'red',
lineNum:6,
background:'#fff',
textColor:"orange"
})
this.$loading.show({
text: 'I am back',
background: 'rgba(0, 0, 0, 0.7)',
textColor: '#fff'
})
setTimeout(() => {
this.$loading.hide()
}, 3000)
