# vue-loading-module **Repository Path**: laoguo8688/vue-loading-module ## Basic Information - **Project Name**: vue-loading-module - **Description**: 一个管理vue组件中methods状态的插件 - **Primary Language**: TypeScript - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-07 - **Last Updated**: 2024-11-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vue-loading-module (English) ## 介绍 一个管理vue组件中methods状态的插件 ## 安装 ```shell npm install vue-loading-module or yarn add vue-loading-module ``` ## 示例 ### 全局注册 ```js // main.js import { createApp } from 'vue' import App from './App.vue' import LoadingPlugin from 'vue-loading-module' createApp(App).use(LoadingPlugin).mount('#app'); // xxx.vue ``` ### 也可以单独在某个组件中使用 ```js // xxx.vue ``` ## 参与贡献 - Fork 本仓库 - 新建 Feat_xxx 分支 - 提交代码 - 新建 Pull Request