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,7 +1,7 @@
<script setup lang="ts">
import { ref, reactive } from "vue";
import { templateRef } from "@vueuse/core";
import SeamlessScroll from "/@/components/ReSeamlessScroll";
import SeamlessScroll from "@/components/ReSeamlessScroll";
const scroll = templateRef<ElRef | null>("scroll", null);

View File

@@ -1,4 +1,4 @@
import { IconifyIconOffline } from "/@/components/ReIcon";
import { IconifyIconOffline } from "@/components/ReIcon";
export function useColumns() {
const lists = [

View File

@@ -3,7 +3,7 @@ import { ref, computed } from "vue";
import Bar from "./components/Bar.vue";
import Pie from "./components/Pie.vue";
import Line from "./components/Line.vue";
import avatars from "/@/assets/avatars.jpg";
import avatars from "@/assets/avatars.jpg";
import Github from "./components/Github.vue";
import Infinite from "./components/Infinite.vue";