layui/src/module/footer/index.vue

15 lines
201 B
Vue
Raw Normal View History

<script lang="ts">
export default {
name: 'LayFooter',
}
</script>
<script setup lang="ts">
import "./index.less"
</script>
<template>
<div class="layui-footer">
<slot />
</div>
</template>