choin
choin
  • 发布:2024-10-05 11:36
  • 更新:2024-10-05 11:36
  • 阅读:101

关于子组件的类型问题

分类:uni-app x
pages: {  
            type: Array as UTSJSONObject[],  
            default: () : UTSJSONObject[] => {  
                return [{  
                    // 子页面  
                    component: null as VueComponent | null,  
                    // 未选中图标  
                    icon: '',  
                    // 被选中图标  
                    selectedIcon: '',  
                    // 标题  
                    title: ''  
                }]  
            }  
        },

component的类型是VueComponent 编译没出错,
可是我在后面函数中调用的时候,就变成了“CreateVueComponent”,并且成功了,

有点疑问:
1、能否统一为:VueComponent 类型?
2、props中是VueComponent , 但函数中变成了CreateVueComponent是否在以后有问题?

文档中也没有说明自定义组件该用什么类型

2024-10-05 11:36 负责人:无 分享
已邀请:

要回复问题请先登录注册