All Questions
106 questions
0
votes
1
answer
39
views
Vue2 doesn't see updates of object in expanded table vuetify
I have a problem with reactivity in Vue2
I have an array of objects in Vuex, which are displayed in v-data-table, inside each object I have an array that is filled with data when row expanded, I want ...
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
2
answers
92
views
Vue2 change object property from method param passing into child props
oi, this one seems so simple but it's giving me a headache.
I have a child component with a property passed down:
<dialog-child requests='requests'/>
the passed prop, is an object obtaining ...
0
votes
1
answer
32
views
Vuex with Nuxt - Unknown Action Type:
I am trying to move my local methods to a VueX Store. Im using nuxt.js so the store format is a bit different than usual. When I try to call my store action, i get "vuex unknown action type: ...
0
votes
1
answer
1k
views
Vuetify / Vue (2) data table not sorting / paginating upon new bound prop
Keeping the table as basic as possible to figure this out. I am struggling to learn how to create server side sorting/pagination to function in vuetify. When I add the :options or :server-items-length ...
0
votes
1
answer
135
views
Opening a modal component with a button in another ccomponent using Vuetify
I have 2 components. Modal and Navbar. I'm trying to open Modal using a button in Navbar using vuex. I have a state called modalIsOpen. This states value changes from false to true when clicked on the ...
0
votes
1
answer
1k
views
Property or method "$store" is not defined on the instance but referenced during render in Vuex
I'm just learning state management of VueJs And I stuck on that, if any one know please let me know
How can I render $store in my Vue component
When I console the $store its undefined
main.js
`
import ...
0
votes
0
answers
4k
views
Uncaught SyntaxError: ambiguous indirect export: default vuex
auth.js
import firebase from 'firebase'
import firebaseui from 'firebaseui';
const config = {
apiKey: "AIzaSyBfEKjNqtQRdeRxd1ocNwAQjPMo80MUn70",
authDomain: "qrpay-23f88....
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
0
answers
45
views
Vuetify Dialog closes on Vuex mutation
I am using Vue 2, Vuetify and Vuex. I have encountered an issue where the Vuetify Dialog closes on Vuex Store mutation.
Basically, I make an API call which gets the search results of a particular ...
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 :...
0
votes
1
answer
685
views
Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property. Vuex
Console
vue.runtime.esm.js:4573 [Vue warn]: Property or method "setRegisterEmail" is not defined on the instance but referenced during render. Make sure that this property is reactive, ...
0
votes
2
answers
460
views
how to show in a table a complete string below the other with split(";")
I have a problem, I receive a whole long string in a table, which is separated by ";",
what I need to do is divide by ; and show me one below the other, for example in the image in the third ...
0
votes
2
answers
17k
views
How can I show the information of a specific element vue js
Hello good morning, I am having this problem, I have 2 tables, a main table that has a button that opens a popup with the second table.
What is the idea? That if I click on the button of the first ...