问题:
watch:{
$route:(to,from)=>{
// this.title 为undefined
}
}
解决:换回正常函数
watch:{
$route:funciton(to,from){
//this 指向Vue
}
}
问题:
watch:{
$route:(to,from)=>{
// this.title 为undefined
}
}
解决:换回正常函数
watch:{
$route:funciton(to,from){
//this 指向Vue
}
}