This commit is contained in:
taiyong
2017-03-14 18:00:39 +08:00
parent a8d75dc0ab
commit 7d5b336fac
8 changed files with 150 additions and 4 deletions

View File

@@ -30,6 +30,7 @@ import Row from '../packages/row/index.js';
import Actionsheet from '../packages/actionsheet/index.js';
import Quantity from '../packages/quantity/index.js';
import Progress from '../packages/progress/index.js';
import Uploader from '../packages/uploader/index.js';
const install = function(Vue) {
if (install.installed) return;
@@ -62,6 +63,7 @@ const install = function(Vue) {
Vue.component(Actionsheet.name, Actionsheet);
Vue.component(Quantity.name, Quantity);
Vue.component(Progress.name, Progress);
Vue.component(Uploader.name, Uploader);
};
// auto install
@@ -103,5 +105,6 @@ module.exports = {
Row,
Actionsheet,
Quantity,
Progress
Progress,
Uploader
};