inital dragable working

ui^2
Thomas 2 years ago
parent 2c059a655e
commit af3d940cec

@ -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>

@ -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>

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

Loading…
Cancel
Save