1234567891011121314151617181920212223242526272829 |
- 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: 120
- }
- },
- methods: {
- onClickLeft() {
- this.$emit('click-left');
- },
- onClickRight() {
- this.$emit('click-right');
- }
- }
- });
|