Czgh.vue 452 B

123456789101112131415161718192021
  1. <template>
  2. <!-- <Sjyh v-if="$store.getters.roles.indexOf('shiji') > -1"></Sjyh>
  3. <Qxyh v-else></Qxyh> -->
  4. <Qxyh></Qxyh>
  5. </template>
  6. <script>
  7. import { reactive, ref, toRefs } from "@vue/reactivity";
  8. import Qxyh from "./Czgh/Qxyh.vue";
  9. import Sjyh from "./Czgh/Sjyh.vue";
  10. export default {
  11. components: {
  12. Qxyh,
  13. Sjyh,
  14. },
  15. setup(prop) {
  16. const czgh = reactive({});
  17. return { ...toRefs(czgh) };
  18. },
  19. };
  20. </script>