开发一个这样的插件能否通过审核?
我想定义一个自己的实例构造函数,比如 defineComponent ,自定义配置字段(加入一些功能),最终整理为原生配置(return component(opt))。
function defineComponent(options){
//options转换为原生配置类型
return component(options)
}
defineComponent({
customData:{
aaa:123
},
//…
})
这样的插件能否通过审核?可以的话 提交的类别应该是什么??