examinationInformation.vue 285 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div>
  3. 考试信息管理
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. props: {},
  9. components: {},
  10. data() {
  11. return {
  12. };
  13. },
  14. computed: {},
  15. watch: {},
  16. created() {},
  17. mounted() {},
  18. methods: {},
  19. };
  20. </script>
  21. <style scoped lang="scss">
  22. </style>