1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-07 18:48:55 +08:00

add tab switcher

This commit is contained in:
lana-k
2020-10-03 22:33:53 +02:00
parent 2371cd5acc
commit f898493d29
4 changed files with 149 additions and 50 deletions

View File

@@ -9,7 +9,7 @@
<schema />
</div>
<div slot="right-pane">
<tab-content />
<tabs />
</div>
</splitpanes>
</div>
@@ -18,14 +18,14 @@
<script>
import Splitpanes from '@/components/splitpanes'
import Schema from '@/components/Schema'
import TabContent from '@/components/TabContent'
import Tabs from '@/components/Tabs'
export default {
name: 'Editor',
components: {
Schema,
Splitpanes,
TabContent
Tabs
}
}
</script>