更新记录
1.0.1(2023-08-03) 下载此版本
精简
1.0.0(2023-08-03) 下载此版本
首次更新
平台兼容性
Vue2 | Vue3 |
---|---|
√ | × |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
HBuilderX 3.4.15 | × | × | × | × | × | × |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
× | × | × | × |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
√ | √ | √ | √ | √ | × | √ | √ | √ |
导入项目后,直接在页面中使用
options 按钮选项,举例: ['按钮一','按钮二']
slideBgColor 按钮组 背景色,默认 #1A5493
@click 点击事件,返回下标
<template>
<cainiao-slide-button :options="options" slideBgColor="#1A5493" @click="click"></cainiao-slide-button>
</template>
<script>
export default {
data: {
options: ['光伏', '煤改电'],
current: 0
},
methods: {
click (index) {
this.current = index
}
}
}
</script>