首页 > 微信 > 详细

微信小程序父组件使用子组件并传参

时间:2021-06-06 10:05:07      阅读:19      评论:0      收藏:0      [点我收藏+]

1.创建一个子组件colNav

2.将创建的子组件中的js文件的Page改成Component,必要

3.在子组件的json文件中,设置"component": true

{
  "usingComponents": {},
  "component": true
}

4.子组件接收父组件传来的参数,在js中接收

 properties: {
   
    route: String,
    title: String,
    num: String,
   

  },

5.子组件使用父组件传来的参数

<text class="num">{{num}}</text>

 

 

 

6.父组件使用子组件

"usingComponents": {
    "colNav": "/pages/component/colNav/index"
  },

 

7.在父组件中调用子组件

<colNav title=收藏 num=23 route="" />

 

7.父组件引入子组件的css和js

@import /pages/component/colNav/index.wxss;           // 在父组件的wxss文件中引入
import ../component/colNav/index‘            // 在父组件的js文件中引入

 

微信小程序父组件使用子组件并传参

原文:https://www.cnblogs.com/lude1994/p/14854504.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!