field component

This commit is contained in:
cookfront 2017-02-12 12:35:10 +08:00
parent 5f37f3ee54
commit a7dec9fe8e
7 changed files with 53 additions and 2 deletions

View File

@ -1,5 +1,6 @@
{
"sample": "./packages/sample/index.js",
"button": "./packages/button/index.js",
"switch": "./packages/switch/index.js"
"switch": "./packages/switch/index.js",
"field": "./packages/field/index.js"
}

View File

@ -0,0 +1,8 @@
## 0.0.2 (2017-01-20)
* 改了bug A
* 加了功能B
## 0.0.1 (2017-01-10)
* 第一版

26
packages/field/README.md Normal file
View File

@ -0,0 +1,26 @@
# @youzan/<%= name %>
!!! 请在此处填写你的文档最简单描述 !!!
[![version][version-image]][download-url]
[![download][download-image]][download-url]
[version-image]: http://npm.qima-inc.com/badge/v/@youzan/<%= name %>.svg?style=flat-square
[download-image]: http://npm.qima-inc.com/badge/d/@youzan/<%= name %>.svg?style=flat-square
[download-url]: http://npm.qima-inc.com/package/@youzan/<%= name %>
## Demo
## Usage
## API
| 参数 | 说明 | 类型 | 默认值 | 可选值 |
|-----------|-----------|-----------|-------------|-------------|
| className | 自定义额外类名 | string | '' | '' |
## License
[MIT](https://opensource.org/licenses/MIT)

3
packages/field/index.js Normal file
View File

@ -0,0 +1,3 @@
import Field from './src/field';
export default Field;

View File

@ -0,0 +1,3 @@
{
"name": "o2-field"
}

View File

@ -0,0 +1,7 @@
<template>
</template>
<script>
</script>

View File

@ -1,6 +1,7 @@
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';
// zenui
import '../packages/zenui/src/index.pcss';
@ -10,6 +11,7 @@ const install = function(Vue) {
Vue.component(Sample.name, Sample);
Vue.component(Button.name, Button);
Vue.component(Switch.name, Switch);
Vue.component(Field.name, Field);
};
// auto install
@ -22,5 +24,6 @@ module.exports = {
version: '0.0.1',
Sample,
Button,
Switch
Switch,
Field
};