quasar
Version:
Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time
20 lines (15 loc) • 398 B
JavaScript
import Vue from 'vue'
import { PanelParentMixin } from '../../mixins/panel.js'
export default Vue.extend({
name: 'QTabPanels',
mixins: [ PanelParentMixin ],
methods: {
__renderPanels (h) {
return h('div', {
staticClass: 'q-tab-panels q-panel-parent',
directives: this.panelDirectives,
on: this.$listeners
}, this.__getPanelContent(h))
}
}
})