| | |
| | | <div class="status_bar fixed w-full top-0 left-0 h-44 flex items-center justify-between bg-white"> |
| | | <div class="i-material-symbols:arrow-back-ios-new-rounded text-black ml-13 text-18"></div> |
| | | <div class="absolute top-0 left-0 w-full h-44 flex items-center justify-center z--1"> |
| | | <div class="text-19 font-medium">新手指南</div> |
| | | <div class="text-19 font-medium">{{t('新手')}}指南</div> |
| | | </div> |
| | | </div> |
| | | |
| | |
| | | </template> |
| | | |
| | | <script setup> |
| | | // 可以在这里添加需要的逻辑 |
| | | import { ref, onMounted } from 'vue' |
| | | import { useI18n } from 'vue-i18n' |
| | | const { t } = useI18n() |
| | | </script> |
| | | |
| | | <style scoped> |