aigc-h5/src/views/training/index.vue

23 lines
386 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<div class="pageContainer">
<div class="tips">敬请期待</div>
</div>
</template>
<script setup>
</script>
<style lang="scss" scoped>
.pageContainer{
.tips{
width: 100%;
height: 50vh;
display: flex;
justify-content: center;
align-items: center;
font-size: 30px;
color: #FFF;
}
}
</style>