Guest User

Untitled

a guest
Jun 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. methods: {
  2. forceUpper: function(e, o, prop) {
  3. const start = e.target.selectionStart;
  4. e.target.value = e.target.value.toUpperCase();
  5. this.$set(o, prop, e.target.value);
  6. e.target.setSelectionRange(start, start);
  7. },
  8. }
  9.  
  10.  
  11. ////////////////////////////////////////////////////////
  12. <input
  13. id="curp"
  14. name="curp"
  15. v-model="employee.curp"
  16. @input="forceUpper($event, employee, 'curp')">
Add Comment
Please, Sign In to add comment