mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
add: waterfall init
This commit is contained in:
parent
3426ea0ac4
commit
846f555861
@ -9,5 +9,6 @@
|
||||
"popup": "./packages/popup/index.js",
|
||||
"dialog": "./packages/dialog/index.js",
|
||||
"picker": "./packages/picker/index.js",
|
||||
"radio-group": "./packages/radio-group/index.js"
|
||||
"radio-group": "./packages/radio-group/index.js",
|
||||
"waterfall": "./packages/waterfall/index.js"
|
||||
}
|
||||
|
0
docs/examples/waterfall.md
Normal file
0
docs/examples/waterfall.md
Normal file
8
packages/waterfall/CHANGELOG.md
Normal file
8
packages/waterfall/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/waterfall/README.md
Normal file
26
packages/waterfall/README.md
Normal file
@ -0,0 +1,26 @@
|
||||
# @youzan/waterfall
|
||||
|
||||
!!! 请在此处填写你的文档最简单描述 !!!
|
||||
|
||||
[![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/waterfall/index.js
Normal file
3
packages/waterfall/index.js
Normal file
@ -0,0 +1,3 @@
|
||||
import SampleComponent from './src/main';
|
||||
|
||||
export default SampleComponent;
|
10
packages/waterfall/package.json
Normal file
10
packages/waterfall/package.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"name": "waterfall",
|
||||
"version": "0.0.1",
|
||||
"description": "瀑布流",
|
||||
"main": "./lib/index.js",
|
||||
"author": "pangxie1991",
|
||||
"license": "MIT",
|
||||
"devDependencies": {},
|
||||
"dependencies": {}
|
||||
}
|
18
packages/waterfall/src/main.vue
Normal file
18
packages/waterfall/src/main.vue
Normal file
@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<div>
|
||||
<h2>author: {{ author }}</h2>
|
||||
<div>Hello {{ name }}</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'Sample',
|
||||
props: ['author'],
|
||||
data() {
|
||||
return {
|
||||
name: 'World'
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
@ -9,6 +9,7 @@ import Popup from '../packages/popup/index.js';
|
||||
import Dialog from '../packages/dialog/index.js';
|
||||
import Picker from '../packages/picker/index.js';
|
||||
import RadioGroup from '../packages/radio-group/index.js';
|
||||
import Waterfall from '../packages/waterfall/index.js';
|
||||
// zanui
|
||||
import '../packages/zanui-css/src/index.pcss';
|
||||
|
||||
@ -25,6 +26,7 @@ const install = function(Vue) {
|
||||
Vue.component(Popup.name, Popup);
|
||||
Vue.component(Picker.name, Picker);
|
||||
Vue.component(RadioGroup.name, RadioGroup);
|
||||
Vue.component(Waterfall.name, Waterfall);
|
||||
};
|
||||
|
||||
// auto install
|
||||
@ -45,5 +47,6 @@ module.exports = {
|
||||
Popup,
|
||||
Dialog,
|
||||
Picker,
|
||||
RadioGroup
|
||||
RadioGroup,
|
||||
Waterfall
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user