Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
Vue.js is an open-source, progressive JavaScript framework for building user interfaces that aims to be incrementally adoptable. Vue.js is mainly used for front-end development and requires an intermediate level of HTML and CSS. Vue.js questions are highly version specific and should always be tagged with [vuejs2] or [vuejs3] in addition to this tag.
currently I have a v-dialog that opens when the window does, and I'm trying to implement a v-icon in the top right corner of my v-dialog. Here is a wireframe:
I cant seem to get the icon in the top ...
How to add page break automatically when the page will be printed, I use jspdf plugin in vuejs 2, is it possible to add page break using those plugins?
Currently, the 2nd div appears broken in the ...
NOTE: This question has been asked, but the solutions don't seem to work in my case, it must be a different issue. I wonder if syncing with Firestore plays a role here.
I have this method that gets ...
I have an a menu dropdown that will show if certain condition is met based on props received.
here I'm using Laravel with Inertia, the condition is passed from controller then checked by class binding ...
I have a Freshly installed VITE app.
How to import vuelidate library and use as a Vue plugin to enable the functionality globally.
Vite does not show up "vuelidate" form.
Error says:
[vite] ...
Currently I've made an svg animation using SVGator.
I've imported it as an asset to my application and I was trying to make it run.
I've made it work following this Docs
But, as I may need to create a ...
I have a problem with the layout default page on NUXT. I create a new page but by default, nuxt use layout/default.vue. I don't like use default layout page.
If you have a solution to my problem. ...
Okay I see this example works in the sandbox which means it has some thing to do with my setup.
If you could have a look at my repository that would be much appreciated:
GithubRepo
The files in ...
Vuetify fixed table headers only work for last header row ( previous ones are hidden on scroll )
Given the a Vuetify table with fixed headers ( playground )
<script setup lang="ts">
import { ref, onMounted } from "vue";
const tableMatrix = ref(Array(100).fill([null, ...
Im looking for a way to use the localePath() function in the script setup function.
useLocalePath() // doesnt work
useI18n() // doesnt have localePath
and the documentation I found was not really ...