UNPKG

quasar

Version:

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

22 lines (17 loc) 338 B
import Vue from 'vue' import slot from '../../utils/slot.js' export default Vue.extend({ name: 'QTr', props: { props: Object }, render (h) { return h( 'tr', this.props === void 0 || this.props.header === true ? {} : { class: this.props.__trClass }, slot(this, 'default') ) } })