以Vuetify的v-data-table为例,实现条件性隐藏列的功能
P粉775723722
2023-08-25 14:48:06
<p>我有一个带有<code>v-data-table</code>和<code>actions</code>列的表格,我想只在用户有某些权限时显示这一列。我正在使用mixin来检查权限。</p>
<p>我尝试了以下方法,但没有成功:</p>
<pre class="brush:html;toolbar:false;"><template v-slot:[`header.actions`]="{ header }" v-if="hasPermission('update center')">
{{ header.text }}
</template>
</pre>
<p>这是我在组件文件中使用mixin的方式:</p>
<pre class="brush:js;toolbar:false;">import BaseLayout from "../layouts/Base/Base.vue";
import hasPermission from "../../../mixins/hasPermissions";
export default {
mixins: [hasPermission],
...
}
</pre>
<p>结果:[1]: https://i.stack.imgur.com/aVSgJ.png</p>
header.actions
是一个用于覆盖actions
列标题渲染的插槽。如果你不传递它(当条件为false
时),Vuetify 将渲染默认的表示。如果你想要有条件地隐藏(不渲染)某些列,请将你的表头定义为
computed