Category "vue.js"

Cannot resolve @fontawesome all / fontawesome-free

I am using vue.js 2 - I add some mdi-icons in my App.vue this generate a new error in my project When I was trying to serve my Project but I got the error as it

How to import internal css conditionally with javascript vuejs?

Currently, I have to import css file conditionally depend on which kind of browser users are using. To not making css file global, I have the following code:

How do I disable nuxt default error redirection

Set up a nuxt project with Vuetify. One of the pages uses a client-only (no-ssr) component. During development, in case of an error in this component, I get red

tailwind css Classes are not included if they are type in a string vue

i'm use TailwindCss with vue if i write component he has a prop like color: <script setup> defineProps({ color: String // give me like: green }) </

ckeditor5-vue preserve quill class

I would like to know how to convert an html with a specific class into an html with a specific style. For example, if the original html was <p class="ql-alig

How to update data in input after loading data from onSSR?

I'm trying to load my shipping data from server (onSSR) and update to my input form. But it don't update even I put my code in onSSR like: onSSR(async () =>

vee-validate's useFieldArray only works with deconstruct

Good day to all, can someone explain me why vee-validates useFieldArray only works correctly when I deconstruct it? Template: // For the working example

Quasar Q-table not updating with ref() array

When I update ref() array, q-table not updating. I am initiating the rows ref with the "getApplications()" function. Then when i call the reviewed() function fr

Vue how to fallback to default rendering with the render function?

Looking at this simple hello world html page <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script src="https://cdn.jsde

Could not find a declaration file for module 'vue-xxx'

Any 3rd party Vue.js library that I try to add to my project, throws the following error: Could not find a declaration file for module 'vue-xxx' I have tried

HTTP requests stuck in Pending state when using Vite

I have a rather large Vue 3 application (~550 components). It takes two minutes just to run vue-cli-service serve and around 20 seconds to re-build it after eac

Change border color when hover textfield

I have vuetify textfield with 1.5.x version in my codepen: https://codepen.io/handy29/pen/yLLwjGg when you hover to text field I want to be green color #6fbd44

How to properly call a method on a Vue component

I'm quite new to using Vue2. I'm using the Vue CLI so I just follow the structure of what's generated from it. What I'm trying to do is submit form data. But

How to use SignInWithRedirect with GoogleAuthProvider?

I am creating a Vue App (Vue version 2). I am using Firebase (Web version 9) as a database and for the authentication. I am using Google as Sign in method. On d

Draw d3-axis without direct DOM manipulation

Is there a way to use d3-axis without directly manipulating the DOM? D3.js complements Vue.js nicely when used for its helper functions (especially d3-scale).

Vuejs Webpack Compression Plugin not compressing

I need help debugging Webpack's Compression Plugin. SUMMARY OF PROBLEM Goal is to enable asset compression and reduce my app's bundle size. Using the Brotli alg

How to determine if vue.js is used in a site or web app?

Is there a command in console? Or a tell tale sign like ng directives used in angular for vue that let you know if it's used in a site or app?

Vue.js aplying phone number format

I'm new to Vue.js and was trying to find a way how to format a phone number in an input field to the desired format. I was able to find an answer here on stacko

Django+Vue:static file not found

When I use Django+Vue to build a web appliction, It occoured that the staic files always not found though I had placed all the files correctly. the logs from se

How do I pass data in $router.push in Vue.js?

I am creating an alert component for a CRUD app using Vue.js. I want a message to be passed to another component once data has been saved. Currently I am trying