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).Pg = MathPage;
theme: {
defaultTheme: 'dark'
}
</script>
<template>
@ -22,7 +19,7 @@ import { MathPage } from "./support/page";
<v-main>
<v-card elevation="0" height="h-100">
<router-view />
<router-view />
</v-card>
</v-main>

View File

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

View File

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