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.
21 lines
634 B
21 lines
634 B
<script setup lang="ts"> |
|
import { useGlobal, useProject, watch } from '#imports' |
|
|
|
const { includeM2M } = useGlobal() |
|
const { loadTables } = useProject() |
|
|
|
watch(includeM2M, async () => await loadTables()) |
|
</script> |
|
|
|
<template> |
|
<div class="flex flex-row w-full"> |
|
<div class="flex flex-col w-full"> |
|
<div class="flex flex-row items-center w-full mb-4 gap-2"> |
|
<!-- Show M2M Tables --> |
|
<a-checkbox v-model:checked="includeM2M" v-e="['c:themes:show-m2m-tables']" class="nc-settings-meta-misc"> |
|
{{ $t('msg.info.showM2mTables') }} |
|
</a-checkbox> |
|
</div> |
|
</div> |
|
</div> |
|
</template>
|
|
|