Skip to content

Releases: vuejs/composition-api

v1.0.0-beta.18

21 Oct 11:15
Compare
Choose a tag to compare

Bug Fixes

  • better vueDependency importing, close #564 (#572) (555f20a)
  • type: vue constructor should not require props with default values (#567) (964f9f3)

Features

  • reactivity: add Vue.delete workaround (#571) (b41da83)

v1.0.0-beta.17

17 Oct 13:21
Compare
Choose a tag to compare

Bug Fixes

Code Refactoring

BREAKING CHANGES

  • watch APIs now default to use flush: 'pre' instead of
    flush: 'post'.

v1.0.0-beta.15

04 Oct 08:19
Compare
Choose a tag to compare

Bug Fixes

  • reactive in SSR (#546) (535c829)
  • incorrect warning for getRegisteredVueOrDefault, resolve #544 (3a1d992)
  • reactive for props (#547) (4d39443)
  • reactive: fix issue when using reactive array in the template (#532) (d99b91d)
  • vue-test: prevent warning when using multiple localVue (#531) (5484bb7)

v1.0.0-beta.14

15 Sep 15:33
Compare
Choose a tag to compare

Bug Fixes

  • circular objects and making all Vue.observable objects isReactive (#512) (f204daa)

Features

  • reactive: allow usage of reactive before Vue.use (#515) (89fd11c)

v1.0.0-beta.13

12 Sep 07:11
Compare
Choose a tag to compare

Bug Fixes

  • sets: check for window to avoid SSR errors (#511) (9ea7230)

v1.0.0-beta.12

12 Sep 06:56
Compare
Choose a tag to compare

Features

v1.0.0-beta.11

22 Aug 08:25
Compare
Choose a tag to compare

Bug Fixes

  • setup: handle updates for directly return a reactive object (#488) (a7f2c25), closes #487
  • watch: check if ob has value before addSub (#477) (d8cd30d)

v1.0.0-beta.9

11 Aug 10:48
Compare
Choose a tag to compare

Bug Fixes

  • watch: watch will trigger when added new keys using set (#468) (13bfed1)

v1.0.0-beta.8

07 Aug 12:01
Compare
Choose a tag to compare

Bug Fixes

v1.0.0-beta.7

06 Aug 14:16
Compare
Choose a tag to compare

BREAKING CHANGES

  • template auto ref unwrapping are now applied shallowly,
    i.e. only at the root level. See vuejs/core#1682 for
    more details.

Features

  • proxyRefs method and ShallowUnwrapRefs type (#456) (149821a)

Performance Improvements