Merge branch 'base'

This commit is contained in:
Burt 2025-01-08 21:20:37 +08:00
commit 6f2876db20
2 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { onLaunch, onShow, onHide } from '@dcloudio/uni-app' import { onHide, onLaunch, onShow } from '@dcloudio/uni-app'
onLaunch(() => { onLaunch(() => {
console.log('App Launch') console.log('App Launch')

View File

@ -1,9 +1,10 @@
import '@/style/index.scss'
import 'virtual:uno.css'
import { createSSRApp } from 'vue' import { createSSRApp } from 'vue'
import App from './App.vue' import App from './App.vue'
import { prototypeInterceptor, requestInterceptor, routeInterceptor } from './interceptors'
import store from './store' import store from './store'
import { routeInterceptor, requestInterceptor, prototypeInterceptor } from './interceptors' // 测试 standard-version: feature
import 'virtual:uno.css'
import '@/style/index.scss'
export function createApp() { export function createApp() {
const app = createSSRApp(App) const app = createSSRApp(App)