//写在标准组件的事件中
let xxx = "value"
window.$glob.params.xxx = xxx
window.postMessage({
action:'refresh'
},'*')
//写在自定义vue组件的mounted()方法里
window.addEventListener('message',function(e){
this.xxx= window.$glob.params.xxx
console.log("监听xxx的值改变为: ",this.xxx)
})