You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
401 B
27 lines
401 B
import { create } from '../common/create';
|
|
|
|
create({
|
|
classes: ['title-class'],
|
|
|
|
props: {
|
|
title: String,
|
|
leftText: String,
|
|
rightText: String,
|
|
leftArrow: Boolean,
|
|
fixed: Boolean,
|
|
zIndex: {
|
|
type: Number,
|
|
value: 1
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onClickLeft() {
|
|
this.$emit('clickLeft');
|
|
},
|
|
|
|
onClickRight() {
|
|
this.$emit('clickRight');
|
|
}
|
|
}
|
|
});
|
|
|