@jackycai/full-screen-loading-plugin
v0.1.4
Published
vue-full-screen-loading-plugin
Downloads
3
Maintainers
Readme
full-screen-loading-plugin
在项目中安装
npm i @jackycai/full-screen-loading-plugin
main.js
import FullScreenLoadingPlugin from "@jackycai/full-screen-loading-plugin";
Vue.use(FullScreenLoadingPlugin);
// 或者添加自定义配置
Vue.use(FullScreenLoadingPlugin, { tips: "请稍等..." });
使用方法:
this.$fullScreenLoading.show();
setTimeout(() => {
this.$fullScreenLoading.hide();
}, 2000);
// 也可以在 show 方法中添加自定义的文字
this.$fullScreenLoading.show("全屏插件转圈圈...");