12345678910111213141516171819 |
- <template>
- </template>
- <script setup lang="ts">
- import RouterViewCom from './router-view.vue'
- import {computed, getCurrentInstance, onMounted, reactive, watch} from "vue";
- import {useRouter, useRoute} from "vue-router";
- const {proxy} = getCurrentInstance()
- const router = useRouter()
- const route = useRoute()
- const state: any = reactive({
- })
- </script>
- <style lang="scss" scoped>
- </style>
|