Files
shoot-miniprograms/src/pages/practise-two.vue

14 lines
262 B
Vue
Raw Normal View History

2025-05-08 22:05:53 +08:00
<script setup>
import AppBackground from "@/components/AppBackground.vue";
import Header from "@/components/Header.vue";
</script>
<template>
<view>
<AppBackground />
<Header title="个人耐力挑战" />
</view>
</template>
<style scoped></style>