mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-06 12:57:44 +00:00
20 lines
443 B
Vue
20 lines
443 B
Vue
<script setup>
|
|
import { ref } from "vue";
|
|
import FileTableBody from "./FileTableBody.vue";
|
|
|
|
const onlyShowFiles = ref(false);
|
|
|
|
function toggleOnlyShow() {
|
|
onlyShowFiles.value = !onlyShowFiles.value;
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<button @click="toggleOnlyShow()" style="margin-bottom: 1rem">Only show files</button>
|
|
<table style="border-spacing: 0;">
|
|
<FileTableBody :onlyShowFiles="onlyShowFiles"/>
|
|
</table>
|
|
</div>
|
|
</template>
|