kerwin_
kerwin_
  • 发布:2024-08-16 18:15
  • 更新:2024-08-16 20:03
  • 阅读:124

Vue3和uniapp开发微信小程序在main.js中引入自定义TabBar,在App.vue中引入,组件显示不出来,也不报错

分类:uni-app
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  
  }  
}  
//App.vue  
<template>  
    <view class="app">  
        <router-view />  
        <CustomTabBar />  
    </view>  
</template>
2024-08-16 18:15 负责人:无 分享
已邀请:
DCloud_UNI_yuhe

DCloud_UNI_yuhe

你好,我这里经过测试,没有发现这种问题,您检查一下是否是其它因素影响

要回复问题请先登录注册