mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
field component
This commit is contained in:
parent
5f37f3ee54
commit
a7dec9fe8e
@ -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"
|
||||
}
|
||||
|
8
packages/field/CHANGELOG.md
Normal file
8
packages/field/CHANGELOG.md
Normal 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
26
packages/field/README.md
Normal 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
3
packages/field/index.js
Normal file
@ -0,0 +1,3 @@
|
||||
import Field from './src/field';
|
||||
|
||||
export default Field;
|
3
packages/field/package.json
Normal file
3
packages/field/package.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"name": "o2-field"
|
||||
}
|
7
packages/field/src/field.vue
Normal file
7
packages/field/src/field.vue
Normal file
@ -0,0 +1,7 @@
|
||||
<template>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
</script>
|
@ -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
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user