-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
SOLVED: [Vue error] $attrs is readonly / $listeners is readonly. #3040
Comments
Which version of BootstrapVue are you using? |
2.0.0-rc.17 I deleted the folder, reinstalled the packages and the error disappeared! |
I'm having the same Problem. I think i narrowed it down a bit. I use webpack as bundler and include Vue in my App.js with This happens with 2.0.0-rc.17 and up, 2.0.0-rc.16 and 2.0.0-rc.15 are working fine. |
See related issue LinusBorg/portal-vue#201 for a solution. Basically you need to set up an alias in your bundler config file to specify which Vue build you are using, to ensure that BootstrapVue, PortalVue (required in in release 2.0.0-rc.19), and your project are all using the same Vue build/source. https://vuejs.org/v2/guide/installation.html#Runtime-Compiler-vs-Runtime-only |
Example with webpack and using the compiler+runtime build of Vue: module.exports = {
// ...
resolve: {
alias: {
'vue$': 'vue/dist/vue.esm.js' // 'vue/dist/vue.common.js' for webpack 1
}
}
} Example for rollup: const alias = require('rollup-plugin-alias')
rollup({
// ...
plugins: [
alias({
'vue': require.resolve('vue/dist/vue.esm.js')
})
]
}) To use the runtime only builds of Vue, replace |
Please upgrade to 2.0.0-rc.19 |
Checks for multiple instances of Vue and issues a warning when using Plugin(s). Addresses issue #3040
I am still encountering this issue at RC19. I have the following alias set in my webpack config:
I also did not receive a warning that I have multiple instances of Vue, if that is already merged in in RC19. To note, I'm not using nuxt nor server-rendered components, but I am using vue-electron together with this as I'm using Electron alongside Vue for my project. Is there something else I can tell you to help to find the source of the problem? Or should I open a new issue for this? |
The warning is not available in RC.19.... it will be in RC.20 (See #3168) |
Are you treating vue as an external in your webpack config?
|
in
|
Save my hours |
It still happen on version 2.1.0 |
Could you please where I should put this file? I put it into root of Rails folder and try but it still happen this error. |
Getting this when upgrading to
|
@scottrobertson soulds like you need to set up an alias for Vue, as mentioned in the above comments, and in the getting started docs https://bootstrap-vue.js.org/docs#aliasing-vue-import |
@tmorehouse, unfortunately, it does not work. Same errors :( Had someone else verify that the alias was setup correctly too. |
Thank you! :) |
This has resolved my problem.
https://github.com/vuetifyjs/vuetify/discussions/4068#discussioncomment-24987 |
Hello everyone! |
this is my vue.config.js module.exports = { |
in my main.js import Vue from 'vue' Vue.use(BootstrapVue) new Vue({ |
i use single wepback and babel |
The fix that worked for me was to install separately bootstrap-vue and then bootstrap.
then
Hope it helps! |
Many thanks ! |
if you are using vue 2.7 and vite, try to use : resolve: {
alias: {
vue: path.resolve(__dirname, './node_modules/vue/dist/vue.esm.js'),
},
} |
Errors in the console when entering in the input.
Nuxtjs 2.6.1
The text was updated successfully, but these errors were encountered: