Update CheckboxDoc.vue

pull/1478/head
mertsincan 2021-08-25 10:05:19 +03:00
parent 023d7794ad
commit a3e3058c2f
1 changed files with 5 additions and 5 deletions

View File

@ -117,7 +117,7 @@ export default {
<td>event: Browser event</td>
<td>Callback to invoke on value change.</td>
</tr>
<tr>
<tr>
<td>focus</td>
<td>event: Browser event</td>
<td>Callback to invoke when element receives focus.</td>
@ -270,9 +270,9 @@ export default {
const checked = ref(false);
const cities = ref([]);
const categories = ref([
{name: 'Accounting', key: 'A'},
{name: 'Marketing', key: 'M'},
{name: 'Production', key: 'P'},
{name: 'Accounting', key: 'A'},
{name: 'Marketing', key: 'M'},
{name: 'Production', key: 'P'},
{name: 'Research', key: 'R'}
]);
const selectedCategories = ref(categories.value.slice(1,3));
@ -286,4 +286,4 @@ export default {
}
}
}
</script>
</script>