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