All Questions
510 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.$...
-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 ...
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 ...
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....
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: {
...
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">
...
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
...
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 ...
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 ...
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 :...
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 (...
-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 ...
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="...
-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)...
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>...