index.vue 392 B

12345678910111213141516171819
  1. <template>
  2. </template>
  3. <script setup lang="ts">
  4. import RouterViewCom from './router-view.vue'
  5. import {computed, getCurrentInstance, onMounted, reactive, watch} from "vue";
  6. import {useRouter, useRoute} from "vue-router";
  7. const {proxy} = getCurrentInstance()
  8. const router = useRouter()
  9. const route = useRoute()
  10. const state: any = reactive({
  11. })
  12. </script>
  13. <style lang="scss" scoped>
  14. </style>