quantity component

This commit is contained in:
cookfront
2017-03-10 15:09:10 +08:00
parent 4935ca66ac
commit f6b3eb8365
12 changed files with 310 additions and 2 deletions

View File

@@ -28,6 +28,7 @@ import ImagePreview from '../packages/image-preview/index.js';
import Col from '../packages/col/index.js';
import Row from '../packages/row/index.js';
import Actionsheet from '../packages/actionsheet/index.js';
import Quantity from '../packages/quantity/index.js';
const install = function(Vue) {
if (install.installed) return;
@@ -58,6 +59,7 @@ const install = function(Vue) {
Vue.component(Col.name, Col);
Vue.component(Row.name, Row);
Vue.component(Actionsheet.name, Actionsheet);
Vue.component(Quantity.name, Quantity);
};
// auto install
@@ -97,5 +99,6 @@ module.exports = {
ImagePreview,
Col,
Row,
Actionsheet
Actionsheet,
Quantity
};