Files
shoot-miniprograms/src/pages/first-try.vue

26 lines
664 B
Vue
Raw Normal View History

2025-05-01 16:36:24 +08:00
<script setup>
import AppBackground from "@/components/AppBackground.vue";
2025-05-01 21:50:12 +08:00
import Header from "@/components/Header.vue";
2025-05-01 22:58:02 +08:00
import Guide from "@/components/Guide.vue";
2025-05-08 22:05:53 +08:00
import Button from "@/components/Button.vue";
2025-05-01 16:36:24 +08:00
</script>
<template>
<view>
<AppBackground />
2025-05-01 21:50:12 +08:00
<Header title="新手试炼场" />
2025-05-08 22:05:53 +08:00
<Guide>
hiRocker这是新人必刷小任务0基础小白也能快速掌握弓箭技巧和游戏规则哦~</Guide
>
2025-05-01 22:58:02 +08:00
<image src="../static/first-try-tip.png" class="try-tip" mode="widthFix" />
2025-05-08 22:05:53 +08:00
<Button>开始</Button>
2025-05-01 16:36:24 +08:00
</view>
</template>
<style scoped>
2025-05-01 22:58:02 +08:00
.try-tip {
width: calc(100% - 20px);
margin: 10px 10px;
2025-05-01 16:36:24 +08:00
}
</style>