Files
shoot-miniprograms/src/pages/point-book-list.vue

17 lines
299 B
Vue
Raw Normal View History

2025-07-29 10:46:37 +08:00
<script setup>
import { ref, onMounted, onUnmounted } from "vue";
import Container from "@/components/Container.vue";
</script>
<template>
<Container
:bgType="2"
bgColor="#F5F5F5"
:whiteBackArrow="false"
title="计分记录"
>
</Container>
</template>
<style scoped></style>