Skip to content

Commit

Permalink
Create 967.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanreyes committed Oct 5, 2021
1 parent 6840848 commit 7862591
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/.vuepress/components/github/967.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<template>
<div class="flex flex-col items-start w-full">
<label for="visible">
<input id="visible" type="checkbox" v-model="visible" />
Visible
</label>
<v-date-picker v-if="visible" v-model="date" mode="datetime" />
</div>
</template>

<script>
export default {
githubTitle: 'Memory issue?',
data() {
return {
visible: true,
date: new Date(),
};
},
};
</script>

0 comments on commit 7862591

Please sign in to comment.