TitleBar
This component allows you to create a title bar. It contains a titleStack (list) for the titles that you want to show.
Example

<title-bar
:title-stack="titleStack"
/>
export default {
name: 'App',
data() {
return {
titleStack: ['Title1', 'Title2']
}
}
}
Props
| Name | Description | Type | Required | Default |
|---|---|---|---|---|
| titleStack | List of titles to show | Array | false |