I make site In laravel 9 with Inertiajs/vuejs 3 based on https://github.com/ColorlibHQ/AdminLTE 3 (dark mode). I removed all jquery and use vuejs only. it works
If I use: Nuxt @ v2.15.8 Environment: production Rendering: server-side Target: server In this case, which of all assets folders does NUXT use? Does NUXT in thi
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
Quasar's documentation is usually really good, so I was surprised to find no information for how to change the default icons in the QUploader component. I'm usi
I have what seems to be a very common issue, but I can get over it. I have an API query that returns me a list of object. I want to display it my page as a grid
When does an element become available in the dom after using a vue v-if? I would have thought you could do a query selector on the element after the v-if evalu
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 am having jsconfig.json in my root directory using Nuxt.js project. And I am having an error: File '/home/mike/Documents/nuxt/node_modules/dotenv/types' not f
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 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 using firebase for the first time in vue.js. After installing firebase using npm, I added it to main.js as follows. //main.js import { createApp } from "vue
edit: I have used a number in this example which was a bad idea, in the real program I'm not using numbers but names (eg name_abba, name_jef, name_john) I have
I need a way to trigger the <select> or <b-form-select> and display the list of dropdown options on mouse hover. Without using JQuery or any externa
I'm implementing WebRTC Perfect Negotiation in my Vue 2 application. The app will have multiple viewers and a single streamer. After a lot of logging and debugg
I have this (shorten for the question) single file component (vue 3.2.31): <template lang="pug"> .test Hello world! </template> <style lang="sass
I am working on a registration form with Laravel 8 and Vue 3. The back-end is an API. In the users table migration file I have: class CreateUs
how can we access the data of the component (such as infos, similarPosts in this example) from the anonymous middleware in the nuxtjs application?