In Nuxt2 there were template $refs that you could access in <script> with this.$refs I would like to know what is the Nuxt3 equivalent of this is. I need
I am able to use dayjs inside vue3 component by adding it to data() import dayjs from 'dayjs' export default { data() { return { dayjs } } }
I'm trying to make v-bind within css work based on this feature: https://v3.vuejs.org/api/sfc-style.html#state-driven-dynamic-css and https://github.com/vuejs/r
Is it possible to enable sourcemaps in Vue-Vite in production environment? I would like to use it for Bugsnag. Can't find anything about it in the docs. In dev
I'm using the last version of MSAL.js (@azure/msal-browser": "^2.23.0"),I can successfully authnenticat but the access token is empty I dont know why. I'm posti
In my vue component, I have a computed object which I wanted to deconstruct. const profile_state = computed(() => store.getters['profile/GET_STATE']); Since
So I have a problem with my vue3 project. The gist: I need to support different layouts for some use cases: authorization, user profile's layout, group's layout
I'm trying to understand the purpose of composables. I have a simple composable like this and was trying to watch state from a Pinia store where the watch does
I want to embed a checkbox inside a Vue3 Component and have the v-model binding passed down to the checkbox. Inside the Component: <!-- Tile.vue --> <t
I have a simple Vue component, which comes from a 3rd party package. The component is a text editor, and I have to provide it with a value for it to render corr
Actually, I installed it. Everything was well until I tried to add a meta description. The problem is that when I want to use meta description instead of showin
I have a dynamic component in my project like that can be "Login" or "RegisterForm" But it doesn't display anything. <script setup lang="ts"> import { re
I am just wondering, how to structure my code to make my sticky <Header /> component change its background-color when intersecting with other components (
I can get component name in vue js 2 by: this.$options.name. How to get it in vue js 3? Thank you.
I can get component name in vue js 2 by: this.$options.name. How to get it in vue js 3? Thank you.
I'm trying to implement an SSO using Azure b2c and Vuejs and MSAL, but I'm getting some issues. msalConfig: { auth: { clientId: "******dd03",
Guys i'm in the transition from vue2 to vue3. As i know in vue2 you can't put more than One element in <template></template> But when i create a n
I am using Ace Editor with Vue3: <v-ace-editor v-model:value="currentRecord.prompt" lang="json" theme="textmate" style="height: 100%;" :o
I created a vue 3 project using Vue cli. I am using a webpack config to manage my build. When I point my vue bundle to vue.runtime.esm-browser.js, then I get a
I am trying to use two pinia stores for my axios params but when I send the axios request, the state is sent as a whole proxy object. stores/product-filter.js i