You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import tTable from '@/components/t-table/t-table.vue'; |
|
import tTh from '@/components/t-table/t-th.vue'; |
|
import tTr from '@/components/t-table/t-tr.vue'; |
|
import tTd from '@/components/t-table/t-td.vue'; |
|
// 创建一个需要混入的对象 |
|
export default { |
|
components: { |
|
tTable, |
|
tTh, |
|
tTr, |
|
tTd |
|
}, |
|
}
|
|
|