123456789101112131415 |
- <template>
- 模型纳管
- </template>
- <script setup lang="ts">
- import {getCurrentInstance, reactive, ref} from "vue";
- const emit = defineEmits([])
- const props = defineProps({})
- const {proxy}: any = getCurrentInstance()
- const state: any = reactive({})
- </script>
- <style lang="scss" scoped>
- </style>
|