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;








0















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.










share|improve this question






























    0















    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.










    share|improve this question


























      0












      0








      0








      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.










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 22 at 9:30







      suedar

















      asked Mar 22 at 8:23









      suedarsuedar

      968




      968






















          1 Answer
          1






          active

          oldest

          votes


















          0














          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








          share|improve this answer























            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            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








            share|improve this answer



























              0














              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








              share|improve this answer

























                0












                0








                0







                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








                share|improve this answer













                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









                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 22 at 8:43









                jomjom

                2,36621021




                2,36621021





























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript