mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
feat:完整布局封装
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<ContentBox
|
||||
class="go-content-draw"
|
||||
:flex="true"
|
||||
:showTop="false"
|
||||
:showBottom="true"
|
||||
:depth="2"
|
||||
>
|
||||
<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>
|
||||
Reference in New Issue
Block a user