23 lines
448 B
Vue
Raw Normal View History

2024-11-28 11:18:02 +08:00
<script lang="ts" setup>
import SvgEditor from "../images/editor.svg?component" // vite-svg-loader 插件的功能
</script>
<template>
2022-11-07 17:46:28 +08:00
<div class="app-container center">
2024-11-28 11:18:02 +08:00
<SvgEditor 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;
}
2022-11-07 17:46:28 +08:00
}
</style>