I have a namespaced vuex store that returns an entry of the store based on the parameter of the current route. This works as expected for the initial load. However, it is not reloaded whenever the route changes. Is there a way to reload / force the recalculation of the getter on change of the route? Answer It…
Tag: vuex
Standard component interaction mechanisms vs Vuex – how to combine them?
The question is probably more theoretical. I have little experience with Vue and am trying to figure out where my knowledge gaps are and fill them. There are standard mechanisms for interaction between components: from top to bottom – input parameters (props) are passed from parent components to child c…
How can i get boolean data from another component in vue js?
I have two Components. In the second component, “date-detail-filter” I always keep track for boolean value, and want to access this data in my parent component. Answer do you know how to use $emit? In your date-detail-filter component you can add this to your method. this.$emit(‘your-event-n…
Passing multiple parameters to Vuex action
I have the following method in my Vue Component I want to pass the parameters (this.urlWithPage, query) to my Vuex action as follows: The problem is that the first parameter url is returning a value but the second one query is returning undefined. My mutation is as follows: How can I get a value from the seco…
Vuex Store Object Child returns undefined, parent returns properly. Why?
I’ve seen some similar questions but they don’t seem to match my situation. When I log this.$store.state.account I get the expected result However, when I console.log(this.$store.state.account.user) the user object disappears! All of the nested properties inside user return undefined though they l…
How to use function that return value inside a template? Vuex, Vue
I’m using a template to get data of a json file, I use “v-for” to print all data, for example: But I need use functions, year() to modificate this information and return and result, for example: The value {{ item.date }} print “2021-01-20” but I hope print “2021” usin…
vue-router beforeEach function does not return item which is updated
I’m stuck with a problem. So here is the scenario. I put an axios request which takes the access token from cookies on store. Then I committed a mutation to make true isLoggedIn variable. Then I access this variable from Navbar to change menu items. It works. But when I try to access isLoggedIn variable…
How to use a method on page load? VueX
I’m learning Vue with Vuex, I made a method called ‘llamarJson’this method get a json data. I don’t know how to use it when the page load. I tried many ways but I could not find a solution. I’m using Vue and Vuex. Please, could you help me? That’s the code html: That’…
did you register the component correctly? For recursive components, make sure to provide the “name” option. (found in ) VUE
I’m learning Vue with Vuex, I tried to do a component but appear this error: vue.js:634 [Vue warn]: Unknown custom element: actividadescomponent – did you register the component correctly? For recursive components, make sure to provide the “name” option. (found in ) error screen shot I…
Object(…) is not a function for Vuex Store
I’m in Vue 3, I started with adding a new Vuex.Store to vue, but I continuously get this javascript error. I also tried the same thing with createStore since I use Vue 3, but it’s still the same. What am I missing? Than I add to Vue as store: What am I missing? Complete error Answer If you are usi…