Goats-Cloud-ui/src/views/index.vue

33 lines
667 B
Vue
Raw Normal View History

<!--
* @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.
-->
2023-05-16 00:14:51 +00:00
<template>
<div class="app-container home">
2024-04-02 02:55:01 +00:00
<div class="title"> {{title}}</div>
2023-05-16 00:14:51 +00:00
</div>
</template>
<script setup name="Index">
2024-04-02 02:55:01 +00:00
let title = import.meta.env.VITE_APP_TITLE;
2023-05-16 00:14:51 +00:00
</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);
2023-05-16 00:14:51 +00:00
}
</style>