index.vue 299 B

123456789101112131415
  1. <template>
  2. 模型纳管
  3. </template>
  4. <script setup lang="ts">
  5. import {getCurrentInstance, reactive, ref} from "vue";
  6. const emit = defineEmits([])
  7. const props = defineProps({})
  8. const {proxy}: any = getCurrentInstance()
  9. const state: any = reactive({})
  10. </script>
  11. <style lang="scss" scoped>
  12. </style>