How do I monitor a deep value in object while using vuex Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experience Should we burninate the [wrap] tag?What is the most efficient way to deep clone an object in JavaScript?How can I merge properties of two JavaScript objects dynamically?How do I remove a property from a JavaScript object?How do I check if an array includes an object in JavaScript?How do I test for an empty JavaScript object?How do I loop through or enumerate a JavaScript object?How do I correctly clone a JavaScript object?How can I get query string values in JavaScript?Sort array of objects by string property valueHow to check if an object is an array?
Is there a concise way to say "all of the X, one of each"?
What do you call a plan that's an alternative plan in case your initial plan fails?
Is there a Spanish version of "dot your i's and cross your t's" that includes the letter 'ñ'?
Can Pao de Queijo, and similar foods, be kosher for Passover?
I am not a queen, who am I?
How does a Death Domain cleric's Touch of Death feature work with Touch-range spells delivered by familiars?
Using et al. for a last / senior author rather than for a first author
What is the musical term for a note that continously plays through a melody?
Does surprise arrest existing movement?
How do I mention the quality of my school without bragging
Why is black pepper both grey and black?
Did Xerox really develop the first LAN?
How to draw this diagram using TikZ package?
Is it true to say that an hosting provider's DNS server is what links the entire hosting environment to ICANN?
How do I keep my slimes from escaping their pens?
Is it true that "carbohydrates are of no use for the basal metabolic need"?
Why don't the Weasley twins use magic outside of school if the Trace can only find the location of spells cast?
How discoverable are IPv6 addresses and AAAA names by potential attackers?
Disable hyphenation for an entire paragraph
How to find all the available tools in macOS terminal?
Why does Python start at index -1 when indexing a list from the end?
How to bypass password on Windows XP account?
List *all* the tuples!
Output the ŋarâþ crîþ alphabet song without using (m)any letters
How do I monitor a deep value in object while using vuex
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experience
Should we burninate the [wrap] tag?What is the most efficient way to deep clone an object in JavaScript?How can I merge properties of two JavaScript objects dynamically?How do I remove a property from a JavaScript object?How do I check if an array includes an object in JavaScript?How do I test for an empty JavaScript object?How do I loop through or enumerate a JavaScript object?How do I correctly clone a JavaScript object?How can I get query string values in JavaScript?Sort array of objects by string property valueHow to check if an object is an array?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Please check this example.
https://codepen.io/suedar/pen/XGyGOj
After I click the li
, the div
is required to display which is not.
I know it is because Reactivity in Depth.
I want to know how can I monitor a deep value in object while using vuex
. Thanks for ur answer.
javascript vue.js vuex
add a comment |
Please check this example.
https://codepen.io/suedar/pen/XGyGOj
After I click the li
, the div
is required to display which is not.
I know it is because Reactivity in Depth.
I want to know how can I monitor a deep value in object while using vuex
. Thanks for ur answer.
javascript vue.js vuex
add a comment |
Please check this example.
https://codepen.io/suedar/pen/XGyGOj
After I click the li
, the div
is required to display which is not.
I know it is because Reactivity in Depth.
I want to know how can I monitor a deep value in object while using vuex
. Thanks for ur answer.
javascript vue.js vuex
Please check this example.
https://codepen.io/suedar/pen/XGyGOj
After I click the li
, the div
is required to display which is not.
I know it is because Reactivity in Depth.
I want to know how can I monitor a deep value in object while using vuex
. Thanks for ur answer.
javascript vue.js vuex
javascript vue.js vuex
edited Mar 22 at 9:30
suedar
asked Mar 22 at 8:23
suedarsuedar
968
968
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Deep watch
should work on Vuex store as well.
import mapState, mapMutations from 'vuex';
export default
computed:
...mapState([
'allCategory'
])
,
methods:
...mapMutations([
'CHANGE_ALL_CATEGORY'
]),
toggleTab(index, isShow)
// ...some action
this.CHANGE_ALL_CATEGORY(allCategory);
,
,
watch:
allCategory:
handler(val)
this.CHANGE_ALL_CATEGORY(val);
,
deep: true
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55295528%2fhow-do-i-monitor-a-deep-value-in-object-while-using-vuex%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Deep watch
should work on Vuex store as well.
import mapState, mapMutations from 'vuex';
export default
computed:
...mapState([
'allCategory'
])
,
methods:
...mapMutations([
'CHANGE_ALL_CATEGORY'
]),
toggleTab(index, isShow)
// ...some action
this.CHANGE_ALL_CATEGORY(allCategory);
,
,
watch:
allCategory:
handler(val)
this.CHANGE_ALL_CATEGORY(val);
,
deep: true
add a comment |
Deep watch
should work on Vuex store as well.
import mapState, mapMutations from 'vuex';
export default
computed:
...mapState([
'allCategory'
])
,
methods:
...mapMutations([
'CHANGE_ALL_CATEGORY'
]),
toggleTab(index, isShow)
// ...some action
this.CHANGE_ALL_CATEGORY(allCategory);
,
,
watch:
allCategory:
handler(val)
this.CHANGE_ALL_CATEGORY(val);
,
deep: true
add a comment |
Deep watch
should work on Vuex store as well.
import mapState, mapMutations from 'vuex';
export default
computed:
...mapState([
'allCategory'
])
,
methods:
...mapMutations([
'CHANGE_ALL_CATEGORY'
]),
toggleTab(index, isShow)
// ...some action
this.CHANGE_ALL_CATEGORY(allCategory);
,
,
watch:
allCategory:
handler(val)
this.CHANGE_ALL_CATEGORY(val);
,
deep: true
Deep watch
should work on Vuex store as well.
import mapState, mapMutations from 'vuex';
export default
computed:
...mapState([
'allCategory'
])
,
methods:
...mapMutations([
'CHANGE_ALL_CATEGORY'
]),
toggleTab(index, isShow)
// ...some action
this.CHANGE_ALL_CATEGORY(allCategory);
,
,
watch:
allCategory:
handler(val)
this.CHANGE_ALL_CATEGORY(val);
,
deep: true
answered Mar 22 at 8:43
jomjom
2,36621021
2,36621021
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55295528%2fhow-do-i-monitor-a-deep-value-in-object-while-using-vuex%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown