feat: 新增图表外层

This commit is contained in:
MTrun
2022-01-27 20:47:22 +08:00
parent be28b2990f
commit f44d119f16
4 changed files with 40 additions and 15 deletions
@@ -0,0 +1,3 @@
import ShapeBox from './index.vue'
export { ShapeBox }
@@ -0,0 +1,13 @@
<template>
<div class="go-shape-box">
<slot></slot>
</div>
</template>
<script setup lang="ts"></script>
<style lang="scss" scoped>
@include go(shape-box) {
position: absolute;
}
</style>