完成项目搭建,完成page、form等公用组件基础功能,初步实现快速开发
zk authored at 2023-04-11 16:26:22
555.00 B
NewLife.QuickVue
<template>
	<div class="layout-footer pb15">
		<div class="layout-footer-warp">
			<div>vue-next-admin,Made by lyt with ❤️</div>
			<div class="mt5">深圳市 xxx 公司版权所有</div>
		</div>
	</div>
</template>

<script setup lang="ts" name="layoutFooter">
// 此处需有内容(注释也得),否则缓存将失败
</script>

<style scoped lang="scss">
.layout-footer {
	width: 100%;
	display: flex;
	&-warp {
		margin: auto;
		color: var(--el-text-color-secondary);
		text-align: center;
		animation: error-num 0.3s ease;
	}
}
</style>