zss
2023-09-14 49bd2c4b798bd57ec09c5d731e2bc78345c6fb25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<style scoped></style>
 
<template>
  <div class="rawUnqualifiedBox">
    <Unqualified></Unqualified>
  </div>
</template>
 
<script>
import Unqualified from "./rawUnqualified/raw.vue";
export default {
  components: { Unqualified }
};
</script>