Guest User

Untitled

a guest
Feb 16th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <template>
  2. <label class="inline auto-width mb-2">
  3.  
  4. <input type="checkbox"
  5. class="inline auto-width auto-height"
  6. ref="checkbox"
  7. :checked="value"
  8. @input="update"/>
  9.  
  10. <slot></slot>
  11. </label>
  12. </template>
  13.  
  14. <script>
  15. export default {
  16. methods: {
  17. update(){
  18. this.$emit('input', this.$refs.checkbox.checked)
  19. }
  20. },
  21. props: ['value'],
  22. };
  23. </script>
Add Comment
Please, Sign In to add comment