fix compilation errors

This commit is contained in:
Julien Fastré 2025-05-27 15:39:48 +02:00
parent 67d804e28e
commit 697b4ab436
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB
2 changed files with 3 additions and 9 deletions

View File

@ -1,9 +1,7 @@
<template> <template>
<div class="row"> <div class="row">
<div class="col-12"> <div class="col-12">
<comment-editor <comment-editor v-model="content" />
v-model="content"
/>
</div> </div>
</div> </div>
</template> </template>
@ -11,7 +9,7 @@
<script lang="ts"> <script lang="ts">
import { defineComponent, ref, watch } from "vue"; import { defineComponent, ref, watch } from "vue";
import CommentEditor from "ChillMainAssets/vuejs/_components/CommentEditor/CommentEditor.vue" import CommentEditor from "ChillMainAssets/vuejs/_components/CommentEditor/CommentEditor.vue";
export default defineComponent({ export default defineComponent({
name: "AddCommentComponent", name: "AddCommentComponent",

View File

@ -89,11 +89,7 @@ import { PropType, computed, defineComponent, ref, watch } from "vue";
import { useI18n } from "vue-i18n"; import { useI18n } from "vue-i18n";
// Types // Types
import { import { User, UserGroup, UserGroupOrUser } from "ChillMainAssets/types";
User,
UserGroup,
UserGroupOrUser,
} from "ChillMainAssets/types";
// Components // Components
import AddPersons from "ChillPersonAssets/vuejs/_components/AddPersons.vue"; import AddPersons from "ChillPersonAssets/vuejs/_components/AddPersons.vue";