All Questions
Tagged with vue-router vuetify.js
152 questions
2
votes
1
answer
83
views
How to use Vuetify in Vue SFC Playground?
I am trying to use both Vue Router and Vuetify in Vue SFC Playground. I began with the Vue Playground example of Vue Router (taken from Getting Started). This had Vue Router already imported, so I ...
0
votes
0
answers
93
views
Route parameter for modal dialog using unplugin-vue-router
I'd like to create modal dialog pop-up window with it's own url.
Having table of server items I'd like to open one item and trigger pop-up with it's own url with fetched server item details. The pop-...
0
votes
0
answers
85
views
How to implement a multi-document application based on dialog (modal) windows in VUE?
Now I have a classic SPA application implemented using the VUE, VUE Router, VUEX, Vuetify stack.
Recently I saw an implementation of an interface based on editing data in dialog (modal) windows. As a ...
3
votes
0
answers
121
views
Detect route change inside inner/partial component (VueRoute 3 in Nuxt 2.14)
Issue
The Vue component PartialComponent has another InnerPartialComponent that, in turn, has a Google Recaptcha (i.e. VueRecaptcha) inside that actually is an old vue-recaptcha (v1.3.0). So, in ...
1
vote
0
answers
206
views
Vue router not redirecting
Yesterday I started working with Vue, Vuetify and Vue Router. With the vuetify project setup the router package was already installed.
First I created some components and basic pages. Then I wanted to ...
4
votes
2
answers
2k
views
How to utilize multiple layouts in Vuetify 3 Application
When I create a essential vuetify application with npm I am loaded with the layouts folder containing default.vue and its components.
Then in the router I have the following:
/**
* router/index.ts
*
...
0
votes
0
answers
187
views
Module not found: Error: Can't resolve 'vue-router' in '{Project Path}\src'
In my vue.js project, I put this code :
import {createRouter, createWebHistory} from 'vue-router';
on the file router.js, but when I try to run the project on browser I always got this error message
...
0
votes
1
answer
1k
views
Vuetify preset Essentials cannot find module 'virtual:generated-layouts'
I'm starting a Vuetify project with Vue3 and want to build it.
Npm run dev is working fine but npm run build failed on this error :
Thanks in advance for the help.
I found out with some tests that ...
0
votes
1
answer
179
views
vuetify button with router link for navigation bar
I am working on a website and I wanted to have the v-btn's styling be set to the active link, I got it kinda working but the background of the button doesn't change correctly, there is just a ...
1
vote
0
answers
111
views
Vue-router loads a component of another route when using Memory mode
Created a vite + vue3 + vuetify3 + nodejs assembly to implement SSR. When setting up vue-router, I use Memory mode and face the problem that if I switch to any route other than the root one, the ...
1
vote
1
answer
52
views
v-for not rendering list in nested route view (vue 3, vue router 4, vueitfy)
I am rendering a set of views from tabs, and each rendered view should have a sub nav list that is generated via a v-for loop. But that list is not rendering. Am I passing the props incorrectly?
I am ...
0
votes
0
answers
101
views
$router.push not working in vuejs application
I have the following vue code: login.vue from https://github.com/themeselection/sneat-vuetify-vuejs-admin-template-free
<script setup lang="ts">
import AuthProvider from '@/views/pages/...
0
votes
0
answers
1k
views
vue3/vuetify - Missing required param when going to a route that doesn't required any param
Using last version of Vue3, Vue-router and Vuetify.
When I'm on the '/a/:accountId/people/:personId/emails' route, and when I wanna go back on the '/a/:accountId/people/' route, I have an error "...
0
votes
0
answers
159
views
Vue 3 Go home on refresh
I have a vuetify (vue 3) app. When I (hard) refresh my web app, I'd like to be redirected to my very first route (for isntance, Skills). Instead I go to the last route I was on.
Here are my routes.
...
1
vote
1
answer
75
views
How to get the data of an api id in a page with vue router?
I'm performing a search in the API, I bring the results to "/results", but each result is to have a detail, that is, for example: When clicking on the detail button, it is to pull the :...