一般正常
screen_areas:[
"青羊区",
"双流区",
"高新区",
"武侯区"
],
//点击事件
click:function(index){
//这样修改有时不会刷新界面
this.screen_areas[1] = "郫都区"
//这时我们需要使用另外一只设置值的方式
this.$set(this.screen_areas,index,'郫都区')//这样就可以正常显示了
//如果是字典的话this.$set(this.dict,key,value)
}