This commit is contained in:
2023-10-07 07:30:33 +08:00
parent 64a6bece5c
commit 7ecf576515
19 changed files with 970 additions and 549 deletions

View File

@@ -0,0 +1,18 @@
<script setup lang="ts">
import { QAInfo } from '@/api/api-models';
import { onMounted, ref } from 'vue';
const questions = ref([] as QAInfo[]);
function GetQAInfo() {
}
onMounted(() => {
});
</script>
<template>
1
</template>