Giter Club home page Giter Club logo

Comments (13)

brandonpittman avatar brandonpittman commented on May 2, 2024 32

This bit me in the ass. Wasted 30 minutes thinking my code was wrong.

from devtools.

belisarh avatar belisarh commented on May 2, 2024 20

Most probably the data is actually reactive, but its reactivity it's not being used to do anything on the DOM. In this situation, clicking on the data property in question in Vue devtools would actually "wake it up" and show it's actual value. From what I can see in the template, while you using the prop, you are not referring to data anywhere on the template, thus devtools, in live mode, happily ignores it. Clicking on it should give you its current value.

from devtools.

thibaud-be avatar thibaud-be commented on May 2, 2024 4
  1. Ready detected Vue 1.04
  2. Console only has one [Vue warn] and a bunch of 404 but no real show stopper

here is what I have:

        Vue.component('actorcomp', {
            props: ['actor','subjectindex'],
            data: function() {
                return {actorData: {}};
            },
            created: function() {
                this.loadActorData(this.subjectindex);
            },
            methods: {
                loadActorData: function(index) {
                    //loading data here
                    }
                },
                actorDataLoaded: function(result) {
                    this.actorData = JSON.parse(result);
                }
            },
            watch: {
                subjectindex: function(newVal, oldVal) {
                    this.loadActorData(newVal);
                }
            },
            template: '<div class="group"><h3>{{actor.label}}</h3><div class="icon icon-{{actor.key}}"></div></div>'
        }); 

boths props are properly refreshed but not the data.
How can I make sure that the data is reactive ?
my appologies for the newb questions I'm not 100% familiar with vue.js yet

from devtools.

tombohub avatar tombohub commented on May 2, 2024 3

For me nothing works except refreshing the tools

from devtools.

brandonpittman avatar brandonpittman commented on May 2, 2024 2

It took me 3 hours...
Bug is still there

After learning why it didn't update, I didn't consider it a bug, but it's still not what I expected to happen.

from devtools.

yyx990803 avatar yyx990803 commented on May 2, 2024

Hmm, I'll need a bit more information as this is supposed to work. Make sure that:

  1. You've updated to the latest version of vue-devtools (1.0.4)
  2. There's no error in the console

If both 1 and 2 are true, then it's most likely the data itself is not properly reactive...

from devtools.

posva avatar posva commented on May 2, 2024

related #393

from devtools.

YihooIsMe avatar YihooIsMe commented on May 2, 2024

This bit me in the ass. Wasted 30 minutes thinking my code was wrong.

+1

from devtools.

thedomeffm avatar thedomeffm commented on May 2, 2024

It took me 3 hours...
Bug is still there

from devtools.

Nanobrainiac avatar Nanobrainiac commented on May 2, 2024

If possible to implement, this might make a nice feature request.

from devtools.

developius avatar developius commented on May 2, 2024

Yeah. When building components, I usually build the API and data structure first, before putting any elements together. It's really annoying when this bug happens because you often spend ages trying to work out why the data isn't updating (when viewing via dev tools). As a last resort, you throw the value into the DOM and voila. Extremely frustrating.

from devtools.

hrsetyono avatar hrsetyono commented on May 2, 2024

This happened to me just now too. It's fixed when I properly add unique key to every component loop

from devtools.

guda-art avatar guda-art commented on May 2, 2024

now fix ?
who can tell me ?
thankyou !

from devtools.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.