Releases: vuejs/composition-api
Releases · vuejs/composition-api
v1.0.0-rc.1
chore: release v1.0.0-rc.1
v1.0.0-beta.25
BREAKING CHANGES
useCSSModule
renamed to useCssModule
to align with Vue 3 (#626)
useCSSModule
is depreacted.
v1.0.0-beta.23
Bug Fixes
- README: The correct option name is
emits
(#617) (4b2f1ab)
- useCSSModule to adapt the change of getCurrentInstance, close #620 (#622) (2ddead0)
v1.0.0-beta.22
Features
- getCurrentInstance: Aligning with vue3 (#520) (1495a46)
BREAKING CHANGES
- getCurrentInstance: The internal vm can be accessed with
getCurrentInstance().proxy
const vm = getCurrentInstance()
// becomes
const vm = getCurrentInstance().proxy