问答详情
源自:5-2 测试发布后的组件库

全局引用以后页面变成空白的了

app上什么dom节点都没有挂载

提问者:慕函数9233278 2022-07-14 14:27

个回答

  • 推理Boy
    2023-03-24 10:12:16

    ui项目中lib/index.js 很关键

    import Demo from './demo/src/main.vue'
    import Card from './card/src/main.vue'
    
    export const components = {
      Demo,
      Card
    }
    
    const install = function (Vue) {
      if (install.installed) return
      Object.keys(components).forEach((key) => {
        console.info('key', key)
        Vue.component(components[key].name, components[key])
      })
    }
    const Index = { install }
    export default Index