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.
18 lines
492 B
18 lines
492 B
2 years ago
|
<script setup lang="ts">
|
||
|
const { includeM2M } = useGlobal()
|
||
2 years ago
|
const { loadTables } = useProject()
|
||
|
|
||
2 years ago
|
watch(includeM2M, async () => await loadTables())
|
||
2 years ago
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="flex flex-row w-full">
|
||
2 years ago
|
<div class="flex flex-col w-full">
|
||
2 years ago
|
<div class="flex flex-row items-center w-full mb-4 gap-2">
|
||
2 years ago
|
<!-- Show M2M Tables -->
|
||
|
<a-checkbox v-model:checked="includeM2M">{{ $t('msg.info.showM2mTables') }}</a-checkbox>
|
||
2 years ago
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|