Files
shoot-miniprograms/src/pages/practise-one.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>