mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
30 lines
674 B
JavaScript
30 lines
674 B
JavaScript
import { VantComponent } from '../common/component';
|
|
import { safeArea } from '../mixins/safe-area';
|
|
VantComponent({
|
|
mixins: [safeArea({ safeAreaInsetTop: true })],
|
|
classes: ['title-class'],
|
|
props: {
|
|
title: String,
|
|
fixed: Boolean,
|
|
leftText: String,
|
|
rightText: String,
|
|
leftArrow: Boolean,
|
|
border: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
zIndex: {
|
|
type: Number,
|
|
value: 1
|
|
}
|
|
},
|
|
methods: {
|
|
onClickLeft() {
|
|
this.$emit('click-left');
|
|
},
|
|
onClickRight() {
|
|
this.$emit('click-right');
|
|
}
|
|
}
|
|
});
|