Skip to content

vnode-unmounted Not Declared #878

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
andrew-svirin opened this issue May 4, 2025 · 0 comments
Open

vnode-unmounted Not Declared #878

andrew-svirin opened this issue May 4, 2025 · 0 comments

Comments

@andrew-svirin
Copy link

andrew-svirin commented May 4, 2025

In FF v 6.6.3
Image

In Chrome v 7.7.6
Image

I face this message when using vue-router version 4.x

\\App.vue
<template>
  <router-view />
</template>
<script>
export default {
  name: 'App',
};
</script>

\\SignIn.vue
<template>
  Sign-in
</template>
<script>
export default {
  name: 'SignIn',
};
</script>

\\ router.js
import {createRouter, createWebHistory} from 'vue-router';

import SignIn from '@/General/views/SignIn.vue';

export default createRouter({
  history: createWebHistory(),
  routes: [
    {path: '/sign-in', component: SignIn},
  ]
});

\\ app.js
import {createApp} from 'vue';
import App from '@/General/App.vue';
import router from '@/General/plugins/router';

const app = createApp(App);

app.config.devtools = true; // Enable Vue DevTools

app.
  .use(router);

app.mount('#app-container');

Also I often facing freezes on vue devtool (for firefox), for Chrome it so slowing page that it impossible to use it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant