index.vue 237 B

12345678910111213141516
  1. <template>
  2. <div>
  3. sss
  4. </div>
  5. </template>
  6. <script setup lang="ts">
  7. import {getCurrentInstance, reactive} from "vue";
  8. const {proxy} = getCurrentInstance()
  9. const state: any = reactive({})
  10. </script>
  11. <style lang="scss" scoped>
  12. </style>