|
|
@ -66,6 +66,10 @@ const populateTables = async () => { |
|
|
|
isLoading = false |
|
|
|
isLoading = false |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const toggleFullScreen = () => { |
|
|
|
|
|
|
|
config.isFullScreen = !config.isFullScreen |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
watch([metas, projectTables], populateTables, { |
|
|
|
watch([metas, projectTables], populateTables, { |
|
|
|
flush: 'post', |
|
|
|
flush: 'post', |
|
|
|
immediate: true, |
|
|
|
immediate: true, |
|
|
@ -104,7 +108,7 @@ watch( |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</GeneralOverlay> |
|
|
|
</GeneralOverlay> |
|
|
|
|
|
|
|
|
|
|
|
<ErdFullScreenToggle :config="config" /> |
|
|
|
<ErdFullScreenToggle :config="config" @toggle-full-screen="toggleFullScreen" /> |
|
|
|
<ErdConfigPanel :config="config" /> |
|
|
|
<ErdConfigPanel :config="config" /> |
|
|
|
<ErdHistogramPanel v-if="!config.singleTableMode" /> |
|
|
|
<ErdHistogramPanel v-if="!config.singleTableMode" /> |
|
|
|
</LazyErdFlow> |
|
|
|
</LazyErdFlow> |
|
|
|