mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
41 lines
983 B
JavaScript
41 lines
983 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var component_1 = require("../common/component");
|
|
component_1.VantComponent({
|
|
classes: ['title-class'],
|
|
props: {
|
|
title: String,
|
|
fixed: Boolean,
|
|
leftText: String,
|
|
rightText: String,
|
|
leftArrow: Boolean,
|
|
border: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
zIndex: {
|
|
type: Number,
|
|
value: 1
|
|
},
|
|
safeAreaInsetTop: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
},
|
|
data: {
|
|
statusBarHeight: 0
|
|
},
|
|
created: function () {
|
|
var statusBarHeight = wx.getSystemInfoSync().statusBarHeight;
|
|
this.setData({ statusBarHeight: statusBarHeight });
|
|
},
|
|
methods: {
|
|
onClickLeft: function () {
|
|
this.$emit('click-left');
|
|
},
|
|
onClickRight: function () {
|
|
this.$emit('click-right');
|
|
}
|
|
}
|
|
});
|