# switchHome

切换当前家庭

# 请求参数

Prop Type Required Default Description
params Object Y - 家庭信息参数

# 参数代码示例

this.$bridge.switchHome({
    homegroupId: item.homegroupId
}).then(res => {
    console.log('switchHome success', res)
}).catch(err => {
    console.log('switchHome error', err)
})
1
2
3
4
5
6
7