[调整] 优化 layout 组件代码结构

This commit is contained in:
就眠儀式
2021-11-16 22:32:45 +08:00
parent 3715898049
commit 117ef91144
11 changed files with 131 additions and 135 deletions

View File

@@ -0,0 +1,3 @@
.layui-footer {
box-sizing: border-box;
}

View File

@@ -1,19 +1,15 @@
<template>
<div class="layui-footer">
<slot />
</div>
</template>
<script lang="ts">
export default {
name: 'LayFooter',
}
</script>
<script setup lang="ts"></script>
<script setup lang="ts">
import "./index.less"
</script>
<style>
.layui-footer {
box-sizing: border-box;
}
</style>
<template>
<div class="layui-footer">
<slot />
</div>
</template>