@sensorskit/vue-on-modify
v0.1.0
Published
vue custom directive of modify binding
Downloads
2
Readme
vue-on-modify
通用的「是否修改」监听逻辑:输入框失焦之后,字符相对输入框上次聚焦时发生变化
示例:
- 输入框聚焦,输入字符后失焦,算修改
- 输入框聚焦,输入字符后又把刚输入的字符删掉,再失焦,不算修改
使用
yarn add @sensorskit/vue-on-modify
在 Vue.js 项目的入口处引入:
import VueOnModify from '@sensorskit/vue-on-modify'
Vue.use(VueOnModify)
// 如果需要自定义选项
Vue.use(VueOnModify, {
directive: 'your-custom-directive-name'
})
在需要绑定修改逻辑的地方引入自定义指令:
<input type="text" v-on-modify="onModify">
<!-- 如果自定义了directive name -->
<input type="text" v-your-custom-name="onModify">