mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-07 02:28:54 +08:00
- Pivot support implementation - Rename queries into inquiries - Rename editor into workspace - Change result set format - New JSON format for inquiries - Redesign panels
55 lines
936 B
Vue
55 lines
936 B
Vue
<template>
|
|
<div id="dbloader-container">
|
|
<db-uploader type="illustrated" />
|
|
<div id="note">
|
|
Sqliteviz is fully client-side. Your database never leaves your computer.
|
|
</div>
|
|
<button id="skip" class="secondary" @click="$router.push('/workspace')">
|
|
Create empty database
|
|
</button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import DbUploader from '@/components/DbUploader'
|
|
|
|
export default {
|
|
name: 'Welcome',
|
|
components: { DbUploader }
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
#dbloader-container {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#note {
|
|
margin-top: 27px;
|
|
font-size: 13px;
|
|
color: var(--color-text-base);
|
|
}
|
|
|
|
#skip {
|
|
margin-top: 42px;
|
|
}
|
|
|
|
>>>.drop-area {
|
|
width: 706px;
|
|
height: 482px;
|
|
padding: 0 150px;
|
|
position: relative;
|
|
}
|
|
|
|
>>>.drop-area .text {
|
|
position: absolute;
|
|
bottom: 42px;
|
|
max-width: 300px;
|
|
}
|
|
</style>
|