如何清空this.$route.query this.$route.query = null或者this.$route.query ='''都会报错的,有没有人指点一下,因为要通过判断是否有路由参数进行不同请求。
this.$route.query是只读属性没办法修改的,如果只是要判断是否有参数可以用 !!this.$route.query 去判断
自己搞定了,将this.$route.query值拷贝给一个变量,然后直接用变量判断,清空就Ok了