# vue-directive **Repository Path**: wtb_1/vue-directive ## Basic Information - **Project Name**: vue-directive - **Description**: 定义vue指令 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-28 - **Last Updated**: 2024-03-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vue-directive ## 安装 ``` npm i @wtb/vue-directive ``` ## v-permission 许可指令。只有许可在授权内才渲染。 ```js
无授权按钮,不显示 add授权按钮,显示
``` ```js Vue.directive("permission", VueDirective.VPermission); const app = new Vue({ data: { auth: ["add", "edit"], // 权限 }, el: "#app", }); ```