Top "Vuejs3" questions

Use this tag for questions specific to version 3 of Vue.

How to Watch Props Change with Vue Composition API / Vue 3?

While Vue Composition API RFC Reference site has many advanced use scenarios with the watch module, there is no examples …

javascript typescript vue.js vuejs3 vue-composition-api
How to use Vue 3 & Add Plugin Boostrap-vue?

I try using Vue 3, but I look can't using Vue.use(exampleplugin) again. I using command vue add bootstrap-vue after …

javascript vue.js vuejs3
Unhandled error during execution of scheduler flush. This is likely a Vue internals bug

I am getting the following error while creating slides in Vue.js: [Vue warn]: Unhandled error during execution of scheduler …

javascript vue.js vuejs3 ion-slides
How to connect Vue 3 with Vuetify?

I initialized a new, empty Vue application using Vue version 3. I then tried to add the plugin Vuetify with the …

vue.js vuetify.js vuejs3
Vuejs 3: Problem with vue-template-compiler

I am trying to integrate vuejs 3 to an existing project which uses webpack. I read about vue-loader, so I am …

javascript vue.js webpack vuejs3 vue-loader
Install vue 3.0 in laravel

Is there a way to install vue 3.0 to Laravel 8? When I run npm install vue@next It started installing Vue 3.0, …

laravel vue.js vue-component vuejs3 laravel-mix-vue3
Add global variable in Vue.js 3

Anybody know how to do add a global variable in Vue 3 ? in Vue 2 we use this in the main.js …

javascript vue.js vuejs2 vue-component vuejs3
How to enable devtools in vue 3 with typescipt in development mode

I'm developing a new app in vue 3 with typescript. I have the Vue Devtools installed in Chrome, but it refuses …

typescript devtools vuejs3
How to filter items in Vue 3?

In Vue 2, we filter items conveniently just using | and filters. But it isn't in Vue 3. As we know,we can …

javascript vue.js vuejs2 vuejs3 vue-filter
Vue.js 3 Event Bus

How to create Event Bus in Vue 3? In Vue 2, it was: export const bus = new Vue(); bus.$on(...) bus.$emit(...) …

javascript vue.js vue-component vuejs3 vue-composition-api