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.

395 B

title description
v-permission 权限指令

HasPermission 组件相同,此指令也是用于根据权限控制元素的显示与隐藏。

使用方式

<script lang="ts" setup>
import { VButton } from "@halo-dev/components"
</script>

<template>
  <VButton type="danger" v-permission="['system:posts:manage']">删除</VButton>
</template>