Top "Vuejs3" questions

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

Vue.js 3 and typescript : Property '$store' does not exist on type 'ComponentPublicInstance

Can't find anything to solve this seemingly obvious issue. Just upgraded from Vue 2 to Vue 3 and Vuex with Typescript. this.$…

typescript vue.js vuex vuejs3 vuex4
Vue 3 Composition API - How to get the component element ($el) on which component is mounted

I want to use onMounted to initiate third-party library. To do that I need the component element as its context. …

vue.js vue-composition-api vuejs3
ref vs reactive in Vue 3?

Looking at some examples of some people's preview tutorials for Vue 3. [Currently beta right now] I've found two examples: Reactive &…

vuejs3 vue-composition-api
After upgrading to vue 3 : "Cannot find module '@vue/compiler-sfc/package.json' "

After upgrading to vue 3 : yarn add vue@next I get this error: "Cannot find module '@vue/compiler-sfc/package.json" …

upgrade vuejs3
How to correctly import Axios in vue 3 after creating new project with CLI?

I created a new project using: vue create hello-world Generating a new project that includes the HelloWorld.vue, app.vue, …

javascript vue.js axios vuejs3
VueJS/Typescript - Cannot find module './components/Navigation' or its corresponding type declarations

When I create a script as typescript (lang="ts") I get an error stating "Cannot find module './components/Navigation' …

javascript typescript vue.js vuejs2 vuejs3
Using Bootstrap 5 with Vue 3

I want to use Bootstrap 5 with Vue 3. As Bootstrap 5 uses vanilla JS (no JQuery), can I use Bootstrap 5 directly in …

vuejs3 bootstrap-5
How can I use async/await in the Vue 3.0 setup() function using Typescript

(This question has been answered for JavaScript, see below, but this question is specific for TypeScript, which behaves differently) I'm …

typescript vue.js async-await vuejs3 vue-composition-api
vue 3 emit warning " Extraneous non-emits event listeners"

I am trying to emit data from child to parent using the composition API I get the following warning. [Vue …

javascript vue.js eventemitter vuejs3 vue-composition-api