import App from './App'
import { createSSRApp } from 'vue'
import { createPinia } from 'pinia';
import './static/commonScss/common.scss';
import './static/styles/style.scss';
import './request/httpInterceptors';
import CustomTabBar from './components/CustomTabBar/CustomTabBar.vue';
export function createApp() {
const app = createSSRApp(App)
const pinia = createPinia();
app.use(pinia);
app.component('CustomTabBar', CustomTabBar);
return {
app
}
}
<template>
<view class="app">
<router-view />
<CustomTabBar />
</view>
</template>
请去对应的第三方社区询问