1234567891011121314151617181920212223242526 |
- <template>
- <CommonMarkBody
- v-if="store"
- :useMarkResult="false"
- :store="store"
- uniquePropName="studentId"
- @error="$emit('error')"
- />
- </template>
- <script lang="ts">
- import CommonMarkBody from "@/features/mark/CommonMarkBody.vue";
- import { defineComponent, watch } from "vue";
- import { store } from "./store";
- export default defineComponent({
- name: "MarkBody",
- components: { CommonMarkBody },
- emits: ["error"],
- setup() {
- return { store };
- },
- });
- </script>
- <style scoped></style>
|