mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-06 10:08:52 +08:00
21 lines
348 B
Vue
21 lines
348 B
Vue
<template>
|
|
<div>
|
|
<table-description
|
|
v-for="(table, index) in schema"
|
|
:key="index"
|
|
:name="table[0]"
|
|
:sql="table[1]"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TableDescription from '@/components/TableDescription'
|
|
|
|
export default {
|
|
name: 'Schema',
|
|
components: { TableDescription },
|
|
props: ['schema']
|
|
}
|
|
</script>
|