2021-03-25 vue-router钩子beforeRouteEnter函数获取到this实例
constFoo={template:...,beforeRouteEnter(to,from,next){//在渲染该组件的对应路由被confirm前调用//不!能!获取组件实例this//因为当钩子执行前,组件实例还没被创建},beforeRouteUpdate(to,from,next){//在当前路由改变,但是该组件被复用时调用//举例来说,对于一个带有动态参数的路径/foo/:id,在/