From 8f534c33204f937a8aae557132dc6a84643c6a60 Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 9 Apr 2022 14:31:27 -0500 Subject: [PATCH 01/16] working on dragable wraper --- src/components/WrapperBox.vue | 29 +++++++++++++++++++++++++++++ src/pages/Editor.vue | 8 +++++--- vite.config.ts | 12 ++++++------ 3 files changed, 40 insertions(+), 9 deletions(-) create mode 100644 src/components/WrapperBox.vue diff --git a/src/components/WrapperBox.vue b/src/components/WrapperBox.vue new file mode 100644 index 0000000..2f894b4 --- /dev/null +++ b/src/components/WrapperBox.vue @@ -0,0 +1,29 @@ + + + + \ No newline at end of file diff --git a/src/pages/Editor.vue b/src/pages/Editor.vue index d267c91..15a27cc 100644 --- a/src/pages/Editor.vue +++ b/src/pages/Editor.vue @@ -1,14 +1,16 @@ - \ No newline at end of file + diff --git a/vite.config.ts b/vite.config.ts index 731ae55..3bc00d8 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -12,11 +12,11 @@ export default defineConfig({ }, }, plugins: [ - vue({ - template: { transformAssetUrls }, - }), + vue({ + template: { transformAssetUrls }, + }), - quasar({ - sassVariables: 'src/quasar-variables.sass', - }),] + quasar({ + sassVariables: 'src/quasar-variables.sass', + })], }) From 3adadd4b9ddfac00d9eb4c3694c673f4e8b85101 Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 9 Apr 2022 14:54:10 -0500 Subject: [PATCH 02/16] added Editor layout --- src/pages/Editor.vue | 60 +++++++++++++++++++++++++++++++++----------- src/router.ts | 3 ++- 2 files changed, 47 insertions(+), 16 deletions(-) diff --git a/src/pages/Editor.vue b/src/pages/Editor.vue index 15a27cc..7a45dee 100644 --- a/src/pages/Editor.vue +++ b/src/pages/Editor.vue @@ -1,21 +1,51 @@ - - - + diff --git a/src/router.ts b/src/router.ts index e0a2ff8..aaf3d4f 100644 --- a/src/router.ts +++ b/src/router.ts @@ -15,8 +15,9 @@ const routes = [ { path: '/editor', name: 'Editor', - component: () => import('./pages/Editor.vue'), + component: () => import(/* webpackChunkName: "Editor" */ './pages/Editor.vue'), }, + ] const router = createRouter({ From 2e5c9e9c5fc0c27a5020cecefe70360fe0756922 Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 9 Apr 2022 15:08:26 -0500 Subject: [PATCH 03/16] Sidbar spacing --- src/App.vue | 2 +- src/pages/Editor.vue | 20 +++++++++++++------- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/src/App.vue b/src/App.vue index 0fdf14b..57e6d72 100644 --- a/src/App.vue +++ b/src/App.vue @@ -12,7 +12,7 @@ import { ref } from "vue";