This commit is contained in:
lb
2023-05-08 15:34:47 +08:00
parent 822df97edd
commit 5cd4dc89fd
15 changed files with 65 additions and 32 deletions

View File

@@ -0,0 +1,17 @@
<template>
<DragabbleContainer class="isolate-area-1">
<SmallBox2></SmallBox2>
</DragabbleContainer>
</template>
<script>
import DragabbleContainer from '../layout/DragableContainer.vue'
import SmallBox2 from '../common/SmallBox2.vue';
export default {
name: "IsolateArea--1",
components: { DragabbleContainer, SmallBox2 }
};
</script>
<style scoped></style>