Source: sources/vue/displays/bars/TTitleBar.js

/**
 * @author [Tristan Valcke]{@link https://github.com/Itee}
 * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause}
 *
 * @file Todo
 *
 * @example Todo
 *
 */

import Vue from 'vue'

export default Vue.component( 'TTitleBar', {
    template: `
        <TContainer 
            class="tAppBar" 
            :height=height 
            :width=width 
            :orientation=orientation 
            :expand=false 
            :wrapContent=false 
            vAlign="center" 
            hAlign="center" 
            overflow="visible"
        >
            <TLabel :label=title />
        </TContainer>
    `,
    props: [ 'height', 'width', 'orientation', 'title' ]
} )