vue-loading2
v0.0.3
Published
a vue loading component
Downloads
10
Readme
vue-loading
Install
npm install vue-loading2 -S
yarn add vue-loading2
QuickStart
require('vue-loading/dist/vue-loading.css');
// in ES6 modules
import loading from 'vue-loading';
// in CommonJS
const loading = require('vue-loading');
// in Global variable
const loading = VueLoading.default;
Vue.use(loading);
this.$loading(true,{
id:'loading1',
section:''
});
Vue.loading(false);
Params
show
: first param, anonymous, whether to show loadingid
: the loading element's idsection
: a element selector used by querySelector,the section to show loading
Methods
Vue.clearLoading
: clear loading when vue router switch