去掉全局分享

This commit is contained in:
wangxiaowei
2026-01-07 23:37:55 +08:00
parent f846d59340
commit 40c2b0dd6c
2 changed files with 0 additions and 24 deletions

View File

@ -4,7 +4,6 @@ import App from './App.vue'
import { requestInterceptor } from './http/interceptor'
import { routeInterceptor } from './router/interceptor'
import NavBar from '@/components/Navbar.vue'
import useShare from '@/hooks/useShare'
import store from './store'
import '@/style/index.scss'
@ -26,9 +25,6 @@ export function createApp() {
app.provide('navbarHeight', getNavBarHeight())
app.provide('capsuleOffset', getCapsuleOffset())
app.mixin(useShare())
return {
app,
}