fix: 修改文件结构

This commit is contained in:
MTrun
2022-01-26 15:46:25 +08:00
parent 8faa6d516c
commit 1e915bc873
37 changed files with 8 additions and 6 deletions
@@ -0,0 +1,3 @@
import EditRange from './index.vue'
export { EditRange }
@@ -0,0 +1,22 @@
<template>
<div class="go-edit-range">
<slot></slot>
</div>
</template>
<script setup lang="ts"></script>
<style lang="scss" scoped>
@include go(edit-range) {
position: relative;
height: 1080px;
width: 1920px;
border: 1px solid;
background-color: #333;
border-radius: 15px;
@include filter-bg-color('background-color2');
@include fetch-theme('box-shadow');
@include filter-border-color('hover-border-color');
@include fetch-theme-custom('border-color', 'background-color4');
}
</style>