10 lines
159 B
Vue
10 lines
159 B
Vue
|
import PropTypes from '../../_util/vue-types'
|
||
|
|
||
|
export default {
|
||
|
name: 'ColumnGroup',
|
||
|
props: {
|
||
|
title: PropTypes.any,
|
||
|
},
|
||
|
isTableColumnGroup: true,
|
||
|
}
|