Vue.js 2+ 正在加载进度指示器 – vue-progress-indicator

Vue.js 2+ 正在加载进度指示器 – vue-progress-indicator

插件名称:vue-progress-indicator

发布时间:2020年9月11日

插件作者:ankurk91

官网 GitHub下载

一个Vue.js v2.x组件,用于在应用程序顶部创建加载进度指示器。

安装

# npm
npm install vue-progress-indicator --save

# Yarn
yarn add vue-progress-indicator

用法

在您的插件中包含插件 app.js

import ProgressIndicator from 'vue-progress-indicator';
Vue.use(ProgressIndicator);

将全局组件放在应用模板中的某个位置

<progress-indicator class="custom-css-classes"></progress-indicator>
<!-- You can place multiple progress on same page differentiated by their name -->
<progress-indicator class="another-progress" name="login-form"></progress-indicator>
相关插件