14 lines
200 B
Vue
Raw Normal View History

2022-01-27 20:47:22 +08:00
<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>