5 迁移组件
5.1 新建组件
如上,index1.json
页面中引用了组件 comp1 comp2 comp3
;
组件分为:普通组件
和 多态组件
这里以普通组件
为例,多态组件具体使用可以参考
cml init component
选择 普通组件(normal-component)
输入 comp1
cml init component
选择 普通组件(normal-component)
输入 comp2
.....
之后,会在 src/components
下生成对应的组件;
5.2 迁移组件 ———— 配置
同4.2 迁移页面配置
5.3 迁移组件 ———— 生命周期映射
小程序 | chameleon |
---|---|
created | created |
attached | beforeMount |
ready | mounted |
detached | destroyed |
总结
1 小程序组件的迁移都要通过 cml init component
去初始化这个组件
2 初始化的组件要在使用该组件的地方配置 usingComponents
字段