liveh5-nuxt/app/pages/index.vue
xingyy 3b8bd623c0 refactor(app): 重构应用配置和样式
- 移除 colorMode 相关代码
- 删除全局样式文件
- 更新 nuxt 配置:
  - 添加 runtimeConfig
  - 更新 css 配置
  - 优化 vite构建配置
  - 新增 image 模块配置
- 更新路由配置
- 调整组件实现
- 更新环境变量加载方式
2025-01-23 13:56:18 +08:00

7 lines
94 B
Vue

<script setup>
import Home from './home/index.vue'
</script>
<template>
<Home/>
</template>