UNPKG

quasar

Version:

Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time

18 lines (13 loc) 346 B
import Vue from 'vue' import { PanelChildMixin } from '../../mixins/panel.js' import { slot } from '../../utils/slot.js' export default Vue.extend({ name: 'QTabPanel', mixins: [ PanelChildMixin ], render (h) { return h('div', { staticClass: 'q-tab-panel', on: { ...this.qListeners } }, slot(this, 'default')) } })