12 lines
216 B
Vue
12 lines
216 B
Vue
<script setup lang="ts">
|
|
import Labyrinth from './components/Labyrinth.vue';
|
|
import Offcanvas from './components/Offcanvas.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<Labyrinth />
|
|
<Offcanvas />
|
|
</div>
|
|
</template>
|