fix: 修改拖拽区域名称

This commit is contained in:
MTrun
2022-01-11 14:15:14 +08:00
parent 6a23fd2d72
commit 9577bd9de7
5 changed files with 6 additions and 6 deletions
@@ -0,0 +1,25 @@
<template>
<ContentBox
class="go-content-draw"
:flex="true"
:showTop="false"
:showBottom="true"
:depth="1"
>
<template #bottom>
</template>
</ContentBox>
</template>
<script setup lang="ts">
import { reactive } from 'vue'
import { ContentBox } from '../ContentBox/index'
</script>
<style lang="scss" scoped>
@include go(content-draw) {
overflow: hidden;
@include background-image('background-point');
@extend .go-point-bg;
}
</style>