Remove defineProps imports (it is a compiler macro now).

This commit is contained in:
2023-11-18 23:47:55 +00:00
parent 64eb9896a9
commit 651ce7b6a7
4 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
</template>
<script setup lang="ts">
import { defineAsyncComponent, defineProps } from 'vue'
import { defineAsyncComponent } from 'vue'
const props = defineProps<{
name: string