Files
element/examples/components/theme-configurator/progress.js
iamkun febdd3bbb4 chore: init theme (#14508)
* chore: init theme

* chore: update faas config
2019-02-28 16:00:59 +08:00

7 lines
170 B
JavaScript

import Vue from 'vue';
import ProgressBar from './progress.vue';
Vue.prototype.$bar = new Vue(ProgressBar).$mount();
document.body.appendChild(Vue.prototype.$bar.$el);