Releases: simplesmiler/vue-focus
Releases · simplesmiler/vue-focus
2.1.0
2.0.0
Breaking changes from 1.x:
- Directives
v-focus-model
andv-focus-auto
are removed. Usev-focus="..." @focus="..." @blur="..."
andv-focus="true"
correspondingly.
2.0.0-rc2
Fixed
- Incorrect dependency on Vue
2.0.0-rc1
Breaking changes from 1.0.0
- Directives
v-focus-model
andv-focus-auto
are removed.
1.0.0
Changes
- Directive
v-focus-model
is now deprecated. It's supported in 1.x, but will be removed in 2.0. Instead ofv-focus-model="expression"
you should usev-focus="expression" @focus="expression = true" @blur="expression = false"
. - Directive
v-focus-auto
is now deprecated. It's supported in 1.x, but will be removed in 2.0. Insteadv-focus-auto
you should usev-focus="true"
.