mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
349 B
14 lines
349 B
2 years ago
|
<script setup lang="ts">
|
||
|
const { includeM2M } = useGlobal()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="flex flex-row w-full">
|
||
|
<div class="flex flex-column w-full">
|
||
|
<div class="flex flex-row items-center w-full mb-4 gap-2">
|
||
|
<a-checkbox v-model:checked="includeM2M">Show M2M Tables</a-checkbox>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|