更新记录
1.0.2(2024-05-10)
下载此版本
样式调整
1.0.1(2024-04-16)
下载此版本
按钮样式微调
1.0.0(2024-04-16)
下载此版本
通用按钮
查看更多
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.1.0 app-vue |
× |
√ |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
鸿蒙元服务 |
× |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
√ |
× |
√ |
× |
× |
× |
× |
tf-button
tf-menu
- 组件作用
- 组件引用例子
<template>
<view class="content">
<TfButton
text="取消"
@click="btn"
>
</TfButton>
<TfButton
type='primary'
text="确认"
@click="btn"
>
</TfButton>
</view>
</template>
<script>
import TfButton from '../../uni_modules/tf-button/components/tf-button/tf-button.vue'
export default {
components:{
TfButton
},
data() {
return {
}
},
onLoad() {
},
methods: {
btn(){
console.log('触发了点击')
}
}
}
</script>
<style scoped>
.content{
display: flex;
}
</style>
- 组件属性说明
属性名 |
类型 |
默认值 |
说明 |
text |
String |
按钮 |
按钮文字 |
type |
String |
default |
按钮的样式类型,可选值primary / success / info/ warning / error |
hairLine |
Boolean |
false |
是否显示按钮的细边框 |
disabled |
Boolean |
false |
是否禁用 |
loading |
Boolean |
false |
按钮名称前是否带 loading 图标 |
plain |
Boolean |
false |
按钮是否镂空,背景色透明 |
customStyle |
Object |
{"fontSize":'30rpx',"width":'264rpx',"height":'64rpx'} |
对按钮的自定义样式,对象形式 |
- 组件方法说明
事件名 |
说明 |
回调参数 |
click |
点击按钮事件 |
- |