mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
24 lines
341 B
JavaScript
24 lines
341 B
JavaScript
Component({
|
|
options: {
|
|
addGlobalClass: true
|
|
},
|
|
|
|
properties: {
|
|
title: String,
|
|
checked: Boolean,
|
|
border: Boolean,
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
size: {
|
|
type: String,
|
|
value: '26px'
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onChange(event) {
|
|
this.triggerEvent('change', event.detail);
|
|
}
|
|
}
|
|
});
|