Vuetify 2中的数据表插槽

时间:2019-08-27 03:34:32

标签: datatable vuetify.js

我正在尝试制作一个内部组件,该组件将是带有一堆插槽的数据表。顶部没有问题,记录没有问题

子组件名称表数据

<v-data-table>
      <template v-slot:top><slot name="top">It's work ))</slot></template>
      <template v-slot:item><slot name="item">Dosent work((</slot></template>
    </v-data-table>

父项

<TableData>
      <template v-slot:top>
       <p>Work</p>
      </template>
      <template v-slot:item.status="{ item }">Error(((
      </template>     
  </TableData>

0 个答案:

没有答案