wepy父子组件传参

//静态传参


// child.wpy
props = {
    title: String
};

onLoad () {
    console.log(this.title); // mytitle
}

//=========================================================================================

//静态传参绑定变量
// parent.wpy

data = {
	title:"11"
}

// child.wpy
props = {
    title: String
};

onLoad () {
    console.log(this.title); // 11
}

//=========================================================================================

//父亲变孩子也变
// parent.wpy

data = {
	title:"11"
}

// child.wpy
props = {
    title: String
};

onLoad () {
    console.log(this.title); // 11
}

//=========================================================================================

//孩子变父亲也变
// parent.wpy

data = {
	title:"11"
}

// child.wpy
props = {
    title: String,
    twoWay: true
};

onLoad () {
    console.log(this.title); // 11
}

//=========================================================================================

//不管父亲孩子一个变另一个也变
// parent.wpy

data = {
	title:"11"
}

// child.wpy
props = {
    title: String,
    twoWay: true
};

onLoad () {
    console.log(this.title); // 11
}

//以上的这几点vue只能用watch等来处理

你可能感兴趣的:(wepy父子组件传参)