We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
How to use this plugin correctly? Everything was perfect with Vue 3, but after switching to Nuxt 3 I can't get the chat to work.
I get the warning "Avoid app logic that relies on enumerating keys on a component instance...", the page freezes, and the CPU heats up to 90+ degrees.
I tried to import directly on the page and create a plugin in /plugins - to no avail.
/plugin/vue-advanced-chat.js content: import VueAdvancedChat from 'vue-advanced-chat'; or import * as VueAdvancedChat from 'vue-advanced-chat';
export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.component("ChatModule", VueAdvancedChat); });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How to use this plugin correctly?
Everything was perfect with Vue 3, but after switching to Nuxt 3 I can't get the chat to work.
I get the warning "Avoid app logic that relies on enumerating keys on a component instance...", the page freezes, and the CPU heats up to 90+ degrees.
I tried to import directly on the page and create a plugin in /plugins - to no avail.
/plugin/vue-advanced-chat.js content:
import VueAdvancedChat from 'vue-advanced-chat';
or
import * as VueAdvancedChat from 'vue-advanced-chat';
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.component("ChatModule", VueAdvancedChat);
});
The text was updated successfully, but these errors were encountered: