简体   繁体   English

如何在 vue 2 中使用 v-data.table-header vuetify 道具?

[英]How to use v-data-table-header vuetify props in vue 2?

Good afternoon, can someone tell me how to access v-data.table-header props from vuetify?下午好,有人能告诉我如何从 vuetify 访问 v-data.table-header 道具吗? i dont know how to access this (mobile, headers, or anything).我不知道如何访问它(手机、标题或任何东西)。

截图

You just use props in component.您只需在组件中使用道具。

<v-data-table-header
  checkbox-color="#000"
  ...
>
  Hi
</v-data-table-header>

you should use v-slot to access those.你应该使用 v-slot 来访问它们。

<template v-slot:header>
    <v-data-table-header> </v-data-table-header>
</template>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM