Sha256: c6e10e73503ae711ae51593cc61226b6cfba4aea0be33a8ed609a648d26a03e5
Contents?: true
Size: 348 Bytes
Versions: 25
Compression:
Stored size: 348 Bytes
Contents
export default { props: { isFocused: { type: Boolean, default: false }, }, methods: { blur() { this.$emit('blur') }, }, watch: { isFocused: { immediate: true, handler(newValue, oldValue) { if (newValue && !oldValue) { this.$nextTick(() => this.focus()) } }, }, }, }
Version data entries
25 entries across 25 versions & 1 rubygems