vuejs / composition-api

Composition API plugin for Vue 2

Home Page:https://composition-api.vuejs.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

can not watch reactive dynamic property

flex-col opened this issue · comments

const state = reactive({
    })

watch(() => state.test, () => {
      console.log('test ------- ', state.test)
    })

setTimeout(() => {
      set(state, 'test', '212313')
    }, 1000)

@antfu should be closed with PR #859