Releases: vuejs/composition-api
Releases · vuejs/composition-api
v1.0.0-beta.1
BREAKING CHANGES
- change umd exported name to
VueCompositionAPI
(#399)
- rename
createElement
to h
(#400)
- drop
createComponent
(#398)
- match dist file naming with vue-next (#413)
Bug Fixes
Features
v0.6.7
Bug Fixes
- toRefs: do not warn when toRefs is called in a prop value (#405) (048b6d3)
- type: improve defineComponent type for option apis (#406) (1c64108)
Features
v0.6.5
Bug Fixes
- watchEffect: prevent recursive calls when using
flush:sync
(#389) (f7f1e77)
- not unwrapping
markRaw
objects (#386) (575d100)
- unwrap refs returned by
data
(#387) (1f07075)
v0.6.4
Bug Fixes
- setup: call stack exceeded when returning circular dependency (#380) (66f58ba)
- setup: Vue.extend(Comp).extend({}) - vue-test-utils (#383) (ce932bf)
v0.6.2
Bug Fixes
- reactivity: unwrap nested refs on the template (#361) (1fd48f5)
- defineComponent() with array props (#364) (d7048d4)
- setup: Allow retuning frozen objects on the setup (#366) (bca3a69)
- mark props as reactive (#359) (bc78428)
Features