From 8f534c33204f937a8aae557132dc6a84643c6a60 Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 9 Apr 2022 14:31:27 -0500 Subject: [PATCH] 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', + })], })