style(code): 统一代码格式化和导入顺序调整
部署开发环境 / deploy-dev (push) Successful in 2m54s

- 调整了多个组件中的导入语句顺序以保持一致
- 格式化了 App.vue 中的 CSS 样式规则使其更易读
- 规范化了 vite.config.ts 中的配置对象缩进
- 移除了未使用的 computed 导入以减少代码冗余
- 整理了图标组件的导入顺序使其按字母排序
- 统一了代码中的空行和缩进格式
This commit is contained in:
2026-05-01 14:04:26 +08:00
parent cee1687373
commit cd061668f9
8 changed files with 99 additions and 48 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
<script setup lang="ts">
import {ref, watch, computed} from 'vue'
import {ref, watch} from 'vue'
import {useRoute, useRouter} from "vue-router"
import {useCounterStore} from "@/stores/counter.ts"
import {Edit, User, Document, CloseBold} from '@element-plus/icons-vue'
import {CloseBold, Document, Edit, User} from '@element-plus/icons-vue'
const router = useRouter()
const route = useRoute()