24 lines
482 B
Vue
Raw Normal View History

2024-11-28 11:18:02 +08:00
<script lang="ts" setup>
2024-11-28 11:39:08 +08:00
import SvgDashboard from "../images/dashboard.svg?component" // vite-svg-loader 插件的功能
2024-11-28 11:18:02 +08:00
</script>
<template>
2022-11-07 17:46:28 +08:00
<div class="app-container center">
2024-11-28 11:39:08 +08:00
<SvgDashboard class="svg" />
<p>欢迎来到Editor角色专属首页</p>
2022-11-07 17:46:28 +08:00
</div>
</template>
2022-11-07 17:46:28 +08:00
<style lang="scss" scoped>
.center {
display: flex;
2024-11-28 11:18:02 +08:00
flex-direction: column;
2022-11-07 17:46:28 +08:00
justify-content: center;
align-items: center;
2024-11-28 11:18:02 +08:00
.svg {
width: 600px;
max-width: 100%;
2024-11-28 11:18:02 +08:00
}
2022-11-07 17:46:28 +08:00
}
</style>