1、Switch to full vue build in vite.config.js: import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' export default defineConfig({ p
I'm trying to pass global state created like this in micro front end applications. But the problem is that I have to "watch" for changes somehow in order to set
I have a problem testing transiton functions with jest and vue test utlis. This is my component code: <div class="disclosure"> <button clas
I'm new to vue .env. I looked everywhere for a straight answer till I got lost. According to VueJS documentation that if we have .env.local file that will be lo
I've got a Vue 3 app with Vue Router 4 and I want to achieve this: <template> <v-app> <router-view></router-view> //This is where
When I try to build a lib in vue3, I want to set multiple output file. Code like this: rollupOptions { output: [ { file: 'bundle.js', format:
I'm learning Vue js. I created a Vue JS app with cdn link and I want to know, how to add element style to it. I can write template as template: <div>Vue j
I have done a project which admin dashboard is done by using laravel+vus (vue (v2.6) inside laravel(v8)) and front end is done by independent vue(v3) js(getting
I'm trying to integrate PayPal buttons with my Vuejs3 project using Composition API (setup ) but all what i get is errors i try to integrate it without using se
I can not loop through the $slots object in Vue 3 to pass all slots from parent to child, the $slots object seems empty in the child component. How can I loop t
I work in an ASP.NET MVC environment with Vue3 front-end, and I have a block that is displayed multiple times on a page. This block has to be a Vue instance, an
After learning Vue.js lately, i'm pretty match confused about how to write vue component syntax i keep seeing youtube tutorials, as well as articles, and everyo
I have a Vuelidate instance in a form component. Another parent component includes it and needs to access it's validator instance through a 2-way model binding.
I am using Vue.js 3, Laravel and Axios to make a simple post call: processFilters() { self = this; let tags = self.checkedTags.
I just need to know why am i getting all these warnings and vulnerabilities after i run (npm install -g @vue/cli) to install Vue JS 3 globally on windows. A pic
I have a Vue3 component (using TS) in which I'm trying to render another component inside it like this: TopBar.vue <template> <TopBarProfileDropdown /&
I would like someone to please explain to me three things I get after creating new Vue JS project. NPM is giving me few warnings that would like to understand.
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