v-role 权限
vue
<template>
<!-- 默认 -->
<el-button v-role="'ADD-POST'">按钮</el-button>
<!-- 当使用 $ 作为前缀时,将忽略标签内的内容,使用新增按钮时填写的文字作为内容 -->
<el-button v-role="'$ADD-POST'"></el-button>
</template>