Goats-Cloud-ui/src/views/index.vue
2023-06-17 15:14:06 +08:00

33 lines
639 B
Vue

<!--
* @FilePath: \code\Goats-Cloud-ui\src\views\index.vue
* @Author: 王路平
* @文件版本: V1.0.0
* @Date: 2023-06-17 08:22:57
* @Description:
*
* 版权信息 : 2023 by ${再登软件}, All Rights Reserved.
-->
<template>
<div class="app-container home">
<div class="title"> 物联大屏管理系统</div>
</div>
</template>
<script setup name="Index">
</script>
<style scoped lang="scss">
.title{
width: 100%;
height: 500px;
display: flex;
justify-content: center;
align-items: center;
font-weight: 600;
font-size: 3rem;
text-shadow: 11px 11px 5px rgba(150, 150, 150, 0.65);
}
</style>