h5age
v0.0.3
Published
``` npm install h5age ``` ##引入 main.js ``` import h5Age from "h5age"; import "h5age/dist/style.css"; app.use(h5Age) ``` <p align="center"> <img src="https://github.com/11477872997/h5age/blob/main/public/bg.png" alt="npm version" /> </p> ## AP
Readme
npm install h5age##引入 main.js
import h5Age from "h5age";
import "h5age/dist/style.css";
app.use(h5Age)| 参数| 说明 |类型|默认值| | --- | --- |--- |--- | | Mtitle |大标题|string |你期望ta的年龄 | | Stitle |小标题|string |选择范围 | | color |按钮选中颜色|string |#41d2d0 | | iconColor |图标颜色|string |#41d2d0 | | windth |按钮宽度|string |17% | | height |按钮高度度|string |40px | | icon |图标:使用是font-awesome(https://fontawesome.dashgame.com/) 图标库 |string |选择范围 |fa fa-arrows-h | isReset |不限|Boolean |true | | v-slot:footer | 是否要底部自定义信息|--- |--- |
Events
| 事件名| 说明 |类型| | --- | --- |--- | | onSection | 返回一个数组,数组里面是选中的最小值和最最大值|--- |
默认模板
<zxh-age ></zxh-age>带参数和事件
<zxh-age Mtitle="你希望他的年龄" Stitle="区间" icon="fa fa-arrows-h" :data="arr" @onSection="alertSome" >
<template v-slot:footer>
<div> 为了打造100%真实的交友平台,请如实填写资料,不真实的资料审核将会被拒绝。</div>
</template>
</zxh-age>
const alertSome = (list) => {
console.log(list);
}
let arr = [1, 2, 3, 4, 5, 7, 7]