Remove warnings about 'defineProps', 'defineEmits' being compiler macros

This commit is contained in:
Jonathan Bourdon
2024-07-24 16:36:48 -04:00
parent 5ec1078705
commit 0d94d79c77
13 changed files with 104 additions and 106 deletions

View File

@@ -4,10 +4,10 @@
:onLoad="load">
<template v-for="content in contents">
<ContentCard :content="content"
class="w-full p-2 my-2"
>
</ContentCard>
<ContentCard :content="content"
class="w-full p-2 my-2"
>
</ContentCard>
</template>
<template v-slot:empty>
@@ -27,7 +27,7 @@
<script setup>
import {useClient} from '@/plugins/api.js';
import {defineProps, ref} from 'vue';
import {ref} from 'vue';
import ContentCard from "./ContentCard.vue";
const props = defineProps({