💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[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", } ~~~