import tableProps from './props'; export default { name: 'Table', props: { type: { type: String, default: 'normal', }, value: { type: Array, default() { return []; }, }, columns: { type: Array, default() { return []; }, }, ...tableProps, }, render(h) { const scopedSlots = this.$scopedSlots; return h(`z-table-${this.type}`, { props: { ...this._props }, scopedSlots }); }, };