[新增] layer 组件 outAnim 出场动画

This commit is contained in:
就眠儀式
2021-11-18 15:23:24 +08:00
parent 05f379c680
commit 8ac00ad877
8 changed files with 140 additions and 125 deletions

View File

@@ -0,0 +1,4 @@
.layui-header {
box-sizing: border-box;
height: 60px;
}

View File

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