forked from AkkomaGang/akkoma-fe
update model and props properties
This commit is contained in:
parent
8088043a0c
commit
988849116d
1 changed files with 6 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<label class="checkbox">
|
||||
<input type="checkbox" :checked="value" @change="$emit('input', $event.target.checked)">
|
||||
<input type="checkbox" :checked="checked" @change="$emit('change', $event.target.checked)">
|
||||
<i class="checkbox-indicator" />
|
||||
<span><slot></slot></span>
|
||||
</label>
|
||||
|
@ -8,7 +8,11 @@
|
|||
|
||||
<script>
|
||||
export default {
|
||||
props: ['value']
|
||||
model: {
|
||||
prop: 'checked',
|
||||
event: 'change'
|
||||
},
|
||||
props: ['checked']
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Reference in a new issue