cell components

This commit is contained in:
cookfront
2017-02-13 16:14:37 +08:00
parent 7a21b3abde
commit 2fed755d7c
9 changed files with 114 additions and 8 deletions

View File

@@ -2,6 +2,8 @@ import Sample from '../packages/sample/index.js';
import Button from '../packages/button/index.js';
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';
// zenui
import '../packages/zenui/src/index.pcss';
@@ -12,6 +14,8 @@ const install = function(Vue) {
Vue.component(Button.name, Button);
Vue.component(Switch.name, Switch);
Vue.component(Field.name, Field);
Vue.component(Radio.name, Radio);
Vue.component(Cell.name, Cell);
};
// auto install
@@ -25,5 +29,7 @@ module.exports = {
Sample,
Button,
Switch,
Field
Field,
Radio,
Cell
};