app.vue 代码如下
<template>
<router-view />
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { onBeforeRouteLeave } from 'vue-router';
export default defineComponent({
name: 'App',
setup() {
onBeforeRouteLeave((to, from) => {
console.log('onBeforeRouteLeave', to, from);
});
}
});
</script>
跑起来控制台有警告,同时也不会触发 onBeforeRouteLeave
这个事件
[Vue Router warn]: No active route record was found. Are you missing a <router-view> component?
然后放到页面内能触发,但是同样也会有警告:
[Vue warn]: Avoid app logic that relies on enumerating keys on a component instance. The keys will be empty in production mode to avoid performance overhead.
请问大佬们这该怎么解决?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.