1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-07 02:28:54 +08:00

Initial commit

This commit is contained in:
lana-k
2020-09-20 22:52:06 +02:00
commit 0a0407cb04
27 changed files with 17617 additions and 0 deletions

24
src/views/MyQueries.vue Normal file
View File

@@ -0,0 +1,24 @@
<template>
<div>
My queries
</div>
</template>
<script>
export default {
name: 'MyQueries',
components: {
},
data () {
return {
}
},
computed: {
},
created () {
// Get queries
},
methods: {
}
}
</script>