inital dragable working

This commit is contained in:
Thomas 2022-04-09 12:04:02 -05:00
parent 2c059a655e
commit af3d940cec
3 changed files with 5 additions and 8 deletions

View File

@ -4,9 +4,6 @@ import { MathPage } from "./support/page";
(window as any).Stmt = MathStatement; (window as any).Stmt = MathStatement;
(window as any).Pg = MathPage; (window as any).Pg = MathPage;
theme: {
defaultTheme: 'dark'
}
</script> </script>
<template> <template>

View File

@ -1,5 +1,4 @@
<script setup> <script setup>
</script> </script>
<template> <template>
@ -7,8 +6,9 @@
</v-navigation-drawer> </v-navigation-drawer>
<v-main> <Draggable>
</v-main> <div class="box">I use a wrapper</div>
</Draggable>
</template> </template>
<style> <style>

View File

@ -29,5 +29,5 @@ app.use(
app.use(router) app.use(router)
app.use(DraggablePlugin) app.use(DraggablePlugin);
app.mount('#app') app.mount('#app')