You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ui/src/pages/Editor.vue

22 lines
305 B

2 years ago
<script setup lang="ts">
import WrapperBox from '../components/WrapperBox.vue';
2 years ago
</script>
<template>
<WrapperBox/>
<Draggable>
<div class="box">
<q-btn
color="primary"
label="Show another notification"
/>
</div>
</Draggable>
2 years ago
</template>
<style></style>