refactor: 使用@/别名替换/@/别名

This commit is contained in:
xiaoxian521
2022-10-27 12:43:01 +08:00
parent 307944cdb5
commit 94f72cd6d9
108 changed files with 296 additions and 300 deletions

View File

@@ -1,6 +1,6 @@
<script setup lang="ts">
import { type CSSProperties, computed } from "vue";
import { hasAuth, getAuths } from "/@/router/utils";
import { hasAuth, getAuths } from "@/router/utils";
defineOptions({
name: "PermissionButton"

View File

@@ -1,8 +1,8 @@
<script setup lang="ts">
import { initRouter } from "/@/router/utils";
import { initRouter } from "@/router/utils";
import { type CSSProperties, ref, computed } from "vue";
import { useUserStoreHook } from "/@/store/modules/user";
import { usePermissionStoreHook } from "/@/store/modules/permission";
import { useUserStoreHook } from "@/store/modules/user";
import { usePermissionStoreHook } from "@/store/modules/permission";
defineOptions({
name: "PermissionPage"