ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
~~~ //定义组件 index.json { "component": true, "usingComponents": {} } ~~~ ~~~ //index.js Component({ /** * 组件的属性列表 */ properties: { src:{ type:Boolean } }, data: { // type:false }, methods: { handleClick(){ var src = this.properties.src; console.log(src); console.log(this.data); } } }) ~~~ ~~~ //在要引用组件的文件中的json中配置 { "usingComponents":{ "v-success":"/components/success/index" } } ~~~