2021-09-09 12:00:18 +08:00
|
|
|
<template>
|
2021-09-09 18:40:38 +08:00
|
|
|
<div class="flex w-full h-full">
|
|
|
|
<div class="flex-center w-1/2 h-full">
|
|
|
|
<h3>登录</h3>
|
|
|
|
</div>
|
|
|
|
<div class="flex-center w-1/2 h-full bg-primary bg-opacity-25">
|
|
|
|
<banner-svg class="w-400px h-400px" type="1" :color="theme.themeColor" />
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-09-09 12:00:18 +08:00
|
|
|
</template>
|
|
|
|
|
2021-09-09 18:40:38 +08:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { BannerSvg } from '@/components';
|
|
|
|
import { useThemeStore } from '@/store';
|
|
|
|
|
|
|
|
const theme = useThemeStore();
|
|
|
|
</script>
|
2021-09-09 12:00:18 +08:00
|
|
|
<style scoped></style>
|