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

@@ -41,19 +41,19 @@
</div>
<div>
<div>
<div>
<h2 class="font-sans font-semibold">Commentaires</h2>
<message-list :subject-id="props.content.id" :messages="messages">
</message-list>
</div>
<div class="border-t-2 border-gray-300 mt-4 pt-4">
<post-message :subject-id="props.content.id" @message-posted="addMessage">
</post-message>
</div>
</div>
</div>
@@ -62,7 +62,7 @@
<script setup>
import {defineProps, computed, reactive} from 'vue';
import {computed, reactive} from 'vue';
import {time_ago} from "@/internal_time_ago.js";
import MessageList from "@/views/messages/MessageList.vue";
import PostMessage from "@/views/messages/PostMessage.vue";