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

This commit is contained in:
Leo Vasanko
2023-11-18 07:47:55 -08:00
parent 5808fe17ad
commit a9b6d04361
4 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
</template>
<script setup lang=ts>
import { defineProps, ref } from 'vue'
import { ref } from 'vue'
import type { Doc } from '@/repositories/Document'
const media = ref<HTMLAudioElement | HTMLVideoElement | null>(null)