mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
icon components
This commit is contained in:
parent
2fed755d7c
commit
18d5372ddb
@ -4,5 +4,6 @@
|
|||||||
"switch": "./packages/switch/index.js",
|
"switch": "./packages/switch/index.js",
|
||||||
"field": "./packages/field/index.js",
|
"field": "./packages/field/index.js",
|
||||||
"radio": "./packages/radio/index.js",
|
"radio": "./packages/radio/index.js",
|
||||||
"cell": "./packages/cell/index.js"
|
"cell": "./packages/cell/index.js",
|
||||||
|
"icon": "./packages/icon/index.js"
|
||||||
}
|
}
|
||||||
|
8
packages/icon/CHANGELOG.md
Normal file
8
packages/icon/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/icon/README.md
Normal file
26
packages/icon/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/icon/index.js
Normal file
3
packages/icon/index.js
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import Icon from './src/icon';
|
||||||
|
|
||||||
|
export default Icon;
|
9
packages/icon/package.json
Normal file
9
packages/icon/package.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"name": "o2-icon",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"description": "o2-icon",
|
||||||
|
"main": "index.js",
|
||||||
|
"author": "zhangmin <zhangmin@youzan.com>",
|
||||||
|
"devDependencies": {},
|
||||||
|
"dependencies": {}
|
||||||
|
}
|
13
packages/icon/src/icon.vue
Normal file
13
packages/icon/src/icon.vue
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<template>
|
||||||
|
<i :class="'zenui-icon-' + name"></i>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'o2-icon',
|
||||||
|
|
||||||
|
props: {
|
||||||
|
name: String
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -1,5 +1,4 @@
|
|||||||
|
@component-namespace o2 {
|
||||||
@component-namespace o2{
|
|
||||||
@component switch {
|
@component switch {
|
||||||
height: 29px;
|
height: 29px;
|
||||||
width: 49px;
|
width: 49px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user