import { Loading } from 'element-ui';
 
Vue.prototype.Loading = '';
// 显示loading
Vue.prototype.showLoading = function(){
  Vue.prototype.Loading = Loading.service({});
}
// 关闭 loading
Vue.prototype.closeLoading = function(){
  Vue.prototype.Loading.close();
}
 

相关文章:

  • 2021-09-21
  • 2021-09-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-20
  • 2021-12-26
  • 2022-12-23
  • 2021-11-14
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案