Giter Club home page Giter Club logo

Comments (4)

underfin avatar underfin commented on May 5, 2024 1

You should use ref or reactive api to make the data is observed in v3.

from core.

sys-keys avatar sys-keys commented on May 5, 2024 1

The issue is that your this in increment is refering to the unproxied state object so vue does not track changes made through it.

Working version here

from core.

yyx990803 avatar yyx990803 commented on May 5, 2024 1

In Vue 2, plain objects are converted in-place to become reactive. But in Vue 3, due to the use of proxy-based reactivity system, the original object and the reactive proxy have different identities.

So:

import { reactive } from 'vue'

const a = { count: 0 }
const proxyA = reactive(a)

console.log(proxyA === a) // false

So in Vue 3, if you want to define a standalone reactive object, the recommended approach is to always explicitly wrap it with reactive at creation (and essentially never use the original object):

const store = reactive({
  state: {
    counter: 0
  },
  increment: function() {
    this.state.counter  ;
  }
})

from core.

limingzhiguang avatar limingzhiguang commented on May 5, 2024

this.state.counter ++

from core.

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.