TitleBar

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

Example

TitleBar

<title-bar
    :title-stack="titleStack"
/>

export default {
  name: 'App',
  data() {
    return {
      titleStack: ['Title1', 'Title2']
    }
  }
}

Props

NameDescriptionTypeRequiredDefault
titleStackList of titles to showArrayfalse