企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ## 创建 ### 1. 在components中的wxml定义模板 ~~~ <text>{{param}}</text> ~~~ ### 2. 在components中的js中定义数据类型 ~~~ properties: { param:{type:String} }, ~~~ ## 使用 ### 3. 在pages中的wxml中使用 ~~~ <v-success param="{{child}}"> </v-success> ~~~ ### 4. 在pages中的js中定义值 ~~~ data: { child:"child", } ~~~