14 lines
262 B
Vue
14 lines
262 B
Vue
|
|
<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>
|