码迷,mamicode.com
首页 > 微信 > 详细

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

时间:2021-06-06 19:14:57      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:文件的   out   pre   json   col   ext   微信小程序   ges   string   

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文件中引入

 

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

标签:文件的   out   pre   json   col   ext   微信小程序   ges   string   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!