微信小程序 -- 使用自定义组件

需要引入的组件为: tabBar
引入的页面为: index

1.在需要引入的页面对应的index.json文件中进行引入

{
	'usingComponents': {
		'tab-bar':'/components/tabBar/tabBar'
	}
}

2.在需要使用的页面的index.wxml文件内进行使用

<tab-bar name='我是传递的数据'>tab-bar>

3.接受传递过来的参数 在被引入组件的tabBar.jsproperties进行接收

Component({
  properties: {
    name:{
      type: String,
      value: undefined
    },
  },
}) 

4.使用接收到的参数 在tabBar.wxml内使用

<text> tabBar {{ name }} text>

你可能感兴趣的:(微信小程序,微信小程序)