33 lines
667 B
Vue
33 lines
667 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"> {{title}}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup name="Index">
|
|
let title = import.meta.env.VITE_APP_TITLE;
|
|
</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>
|
|
|