cell component

This commit is contained in:
cookfront
2017-02-13 17:21:46 +08:00
parent 18d5372ddb
commit 35ec796e61
3 changed files with 43 additions and 9 deletions

View File

@@ -4,6 +4,7 @@ import Switch from '../packages/switch/index.js';
import Field from '../packages/field/index.js';
import Radio from '../packages/radio/index.js';
import Cell from '../packages/cell/index.js';
import Icon from '../packages/icon/index.js';
// zenui
import '../packages/zenui/src/index.pcss';
@@ -16,6 +17,7 @@ const install = function(Vue) {
Vue.component(Field.name, Field);
Vue.component(Radio.name, Radio);
Vue.component(Cell.name, Cell);
Vue.component(Icon.name, Icon);
};
// auto install
@@ -31,5 +33,6 @@ module.exports = {
Switch,
Field,
Radio,
Cell
Cell,
Icon
};