Skip to main content

All Questions

0 votes
0 answers
36 views

Vue Router 2.6 Navigation Issue, cannot navigate back (browser button)

I’m working on a Vue.js (v. 2.6) application that uses Vue Router for navigation between different pages. After logging in, the user is redirected to the home page with the following code: this.$...
Bbird's user avatar
  • 13
-1 votes
1 answer
452 views

Failed to scan for dependencies from entries: index.html" Error after Running npm run dev

I am encountering an issue while trying to run my Vue.js project with Vite. After executing the command npm run dev, the server fails to start, and I receive the following error: VITE v5.4.3 ready in ...
ADIL RADIDI's user avatar
0 votes
0 answers
53 views

How can I handle all vue js routes start with "/admin" or "/user"

In Laravel we write below: Route::prefix('/user')->name('User')->group(function() { // Our Routes }); in Vue Js, when I searched I couldn't find anything. please if someone knows about it, tell ...
MEHRDAD DASHTI's user avatar
0 votes
2 answers
451 views

Can't access state of store vuex

Here is of main file /main.js import Vue from 'vue'; import App from './App.vue'; import vuetify from './plugins/vuetify'; import router from './router'; import store from './store/index.js'; Vue....
Storm's user avatar
  • 1
1 vote
1 answer
166 views

Using v-model to bind user input to state in the Vuex store

I have this store: //store.js import modulePaciente from './paciente/modulePaciente' export default new Vuex.Store({ getters, mutations, state, actions, modules: { ...
Emerson Rios's user avatar
1 vote
1 answer
167 views

Display elements which starts on first letter Vue 2

I want to display only elements which starts on letter thtt i click in my <template> <div> <div class="d-flex px-2 pt-5 flex-wrap justify-center"> ...
Feli's user avatar
  • 27
0 votes
1 answer
46 views

how to put here hyperlink for this date?

How to put here hyperlink for this date? I want this random date to lead me to some random internet-link <v-list-item-content> <v-list-item-title> 02.06.2023 ...
user avatar
0 votes
1 answer
80 views

How do I capture the value of the prop in the text field?

I have a prop and currently am able to get the data of the prop, Am trying a way to capture the item of the prop when saving the form. Is there a way where i can take the value and pass if in a hidden ...
kennedy mutethia's user avatar
0 votes
2 answers
723 views

how to add a column that numbers the table?

I use data-table with vuetify, You can see the final result I want in the image below. just add a column in the left side. I use data-table with vuetify, You can see the final result I want in the ...
Amit Amar's user avatar
0 votes
0 answers
192 views

The state (products) dont render in the v-data-table from vuetify

Im get the products state in my computed well , but when i add the products into the table i get ann error. the products came from api call, What can I do to make the information appear? the error is :...
Amit Amar's user avatar
0 votes
1 answer
1k views

VueJS TypeError: Cannot read properties of undefined (reading 'toLowerCase')

I can filter in a array and I delete items from this array. My problem starts when I try to add items to this array list. I get the following error: TypeError: Cannot read properties of undefined (...
Micha's user avatar
  • 33
-1 votes
1 answer
900 views

Why label of file size on filepond show 1kb every file when displaying edit form?

I have a module that has add and edit form. In the add and edit form, the user can upload files. When edit, it will show uploaded files In add form, it works. When user upload, file size of file ...
smile code's user avatar
0 votes
1 answer
193 views

Why line number doesn't work when click on another page?

I use vue js version 2.6.11 I have 3 component vue My first component like this : <template> ... <page-listing :lastPage="lastPage" :perPage="...
positive developer's user avatar
-1 votes
1 answer
431 views

How can I solve Computed property "search" was assigned to but it has no setter?

I use vue js version 2 My child component like this : <template> ... <div class="search-sm"> <b-input placeholder="Search" @input="(val)...
positive developer's user avatar
0 votes
1 answer
2k views

How can I pass v-model from a child component to parent component in vue?

I use vue version 2 My parent component like this : <template> ... <page-heading :searchChange="searchChange" ></page-heading> ... </template>...
positive developer's user avatar

15 30 50 per page
1
2 3 4 5
34