mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
34 lines
486 B
JavaScript
34 lines
486 B
JavaScript
Component({
|
|
externalClasses: [
|
|
'custom-class',
|
|
'title-class'
|
|
],
|
|
|
|
options: {
|
|
multipleSlots: true,
|
|
addGlobalClass: true
|
|
},
|
|
|
|
properties: {
|
|
title: String,
|
|
leftText: String,
|
|
rightText: String,
|
|
leftArrow: Boolean,
|
|
fixed: Boolean,
|
|
zIndex: {
|
|
type: Number,
|
|
value: 1
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onClickLeft() {
|
|
this.triggerEvent('click-left');
|
|
},
|
|
|
|
onClickRight() {
|
|
this.triggerEvent('click-right');
|
|
}
|
|
}
|
|
});
|