Category "vuejs3"

Can I run laravel (admin dashboard) and vue (front-end) in a single domain

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

How to integrate paypal Payment Button Vuejs3 Composition API (setup function)

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

can not loop through $slots object in Vue 3 to pass all slots from parent to child

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

Proper way to have the same Vue instance on the same page for multiple times?

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

Which way better to create vue component (export default vs defineComponent vs new Vue)

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

Passing Vuelidate instance as modal data makes it undefined

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.

Vue 3 Axios post call works but v-model lags a step behind?

I am using Vue.js 3, Laravel and Axios to make a simple post call: processFilters() { self = this; let tags = self.checkedTags.

Is it normal to see all of this while installing Vue JS CLI?

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

Vue3 Typescript error on registering component inside another

I have a Vue3 component (using TS) in which I'm trying to render another component inside it like this: TopBar.vue <template> <TopBarProfileDropdown /&

NPM response after creating new Vue JS project

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.

How to use template refs in Nuxt 3

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

how to properly use dayjs inside vue 3 app and component

I am able to use dayjs inside vue3 component by adding it to data() import dayjs from 'dayjs' export default { data() { return { dayjs } } }

Vue3 css v-bind() not working with external script

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

Enable sourcemaps in Vue-Vite

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

Why I'm getting an empty access token from azure b2c using vuejs 3

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

Create a deconstructed computed properties out of a computed object

In my vue component, I have a computed object which I wanted to deconstruct. const profile_state = computed(() => store.getters['profile/GET_STATE']); Since

How to prevent double invoking of the hook created?

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

Vue3 | Pinia - Watching storeToRefs in composable function does not work

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

Passing v-model into a checkbox inside a Component in Vue 3?

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

Making v-model:value lazy

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