17 lines
299 B
Vue
17 lines
299 B
Vue
|
|
<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>
|