2023-05-17 09:56:28 +08:00
|
|
|
import hasRole from "./permission/hasRole";
|
|
|
|
import hasPermi from "./permission/hasPermi";
|
|
|
|
import copyText from "./common/copyText";
|
2023-05-09 15:21:05 +08:00
|
|
|
|
2023-05-17 09:56:28 +08:00
|
|
|
export default function directive(app) {
|
|
|
|
app.directive("hasRole", hasRole);
|
|
|
|
app.directive("hasPermi", hasPermi);
|
|
|
|
app.directive("copyText", copyText);
|
|
|
|
}
|