mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-15 09:48:14 +08:00
🚚 t-loading → to-loading
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
</v-btn>
|
||||
</template>
|
||||
</v-app-bar>
|
||||
<TLoading v-model="loading" :title="loadingTitle" />
|
||||
<TOLoading v-model="loading" :title="loadingTitle" />
|
||||
<div class="wrap">
|
||||
<!-- 左侧菜单 -->
|
||||
<div class="left-wrap">
|
||||
@@ -108,7 +108,7 @@
|
||||
<script lang="ts" setup>
|
||||
// vue
|
||||
import { onMounted, ref, onBeforeMount, computed } from "vue";
|
||||
import TLoading from "../components/main/t-loading.vue";
|
||||
import TOLoading from "../components/overlay/to-loading.vue";
|
||||
// tauri
|
||||
import { dialog, fs } from "@tauri-apps/api";
|
||||
// Store
|
||||
|
||||
@@ -91,7 +91,7 @@
|
||||
// vue
|
||||
import { onMounted, ref } from "vue";
|
||||
import { useRouter } from "vue-router";
|
||||
import TLoading from "../components/main/t-loading.vue";
|
||||
import TLoading from "../components/overlay/to-loading.vue";
|
||||
// store
|
||||
import { useAppStore } from "../store/modules/app";
|
||||
// utils
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<template>
|
||||
<TLoading v-model="loading" :title="loadingTitle" :subtitle="loadingSubtitle" />
|
||||
<TOLoading v-model="loading" :title="loadingTitle" :subtitle="loadingSubtitle" />
|
||||
<component :is="item" v-for="item in components" :key="item" :ref="setItemRef" />
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
// vue
|
||||
import { markRaw, onMounted, onUnmounted, onUpdated, ref } from "vue";
|
||||
import TLoading from "../components/main/t-loading.vue";
|
||||
import TOLoading from "../components/overlay/to-loading.vue";
|
||||
import TPool from "../components/main/t-pool.vue";
|
||||
import TPosition from "../components/main/t-position.vue";
|
||||
import TCalendar from "../components/main/t-calendar.vue";
|
||||
|
||||
Reference in New Issue
Block a user