123456789101112131415161718192021 |
- <template>
- <!-- <Sjyh v-if="$store.getters.roles.indexOf('shiji') > -1"></Sjyh>
- <Qxyh v-else></Qxyh> -->
- <Qxyh></Qxyh>
- </template>
- <script>
- import { reactive, ref, toRefs } from "@vue/reactivity";
- import Qxyh from "./Czgh/Qxyh.vue";
- import Sjyh from "./Czgh/Sjyh.vue";
- export default {
- components: {
- Qxyh,
- Sjyh,
- },
- setup(prop) {
- const czgh = reactive({});
- return { ...toRefs(czgh) };
- },
- };
- </script>
|