Последняя версия с сервера прошлого разработчика
This commit is contained in:
24
nova/resources/js/components/Index/Checkbox.vue
Executable file
24
nova/resources/js/components/Index/Checkbox.vue
Executable file
@@ -0,0 +1,24 @@
|
||||
<template>
|
||||
<input
|
||||
type="checkbox"
|
||||
class="checkbox"
|
||||
:disabled="disabled"
|
||||
:checked="checked"
|
||||
@change="$emit('input', $event)"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
|
||||
checked: {
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user