add Areaone
This commit is contained in:
parent
5cd4dc89fd
commit
48aa55b500
@ -1,17 +1,30 @@
|
||||
<template>
|
||||
<DragabbleContainer class="isolate-area-1">
|
||||
<SmallBox2></SmallBox2>
|
||||
</DragabbleContainer>
|
||||
<SmallBox2></SmallBox2>
|
||||
<SmallBox2></SmallBox2>
|
||||
<SmallBox2></SmallBox2>
|
||||
<SmallBox2></SmallBox2>
|
||||
</DragabbleContainer>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DragabbleContainer from '../layout/DragableContainer.vue'
|
||||
import SmallBox2 from '../common/SmallBox2.vue';
|
||||
import DragabbleContainer from "../layout/DragableContainer.vue";
|
||||
import SmallBox2 from "../common/SmallBox2.vue";
|
||||
|
||||
export default {
|
||||
name: "IsolateArea--1",
|
||||
components: { DragabbleContainer, SmallBox2 }
|
||||
components: { DragabbleContainer, SmallBox2 },
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
||||
<style scoped lang="scss">
|
||||
.isolate-area-1 {
|
||||
display: flex;
|
||||
|
||||
> .small-box-2:not(:last-child) {
|
||||
margin: {
|
||||
right: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
@ -1,12 +1,15 @@
|
||||
<template>
|
||||
<main>
|
||||
main content
|
||||
<AreaOne />
|
||||
</main>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AreaOne from '../isolate-area-1/Area.vue'
|
||||
export default {
|
||||
name: "Main",
|
||||
components: { AreaOne },
|
||||
props: {},
|
||||
data() {
|
||||
return {};
|
||||
|
Loading…
Reference in New Issue
Block a user