UNPKG

cube-ui

Version:

A fantastic mobile ui lib implement by Vue

16 lines (14 loc) 231 B
const EVENT_CHANGE = 'change' export default { methods: { changeHander(e) { this.$emit(EVENT_CHANGE, e) }, focus() { this.$refs.input.focus() }, blur() { this.$refs.input.blur() } } }