mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-24 18:30:17 +08:00
26 lines
476 B
Vue
26 lines
476 B
Vue
<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-point('background-point');
|
|
@extend .go-point-bg;
|
|
}
|
|
</style>
|