mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-08 07:44:59 +00:00
fix compilation errors
This commit is contained in:
@@ -1,9 +1,7 @@
|
||||
<template>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<comment-editor
|
||||
v-model="content"
|
||||
/>
|
||||
<comment-editor v-model="content" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@@ -11,7 +9,7 @@
|
||||
<script lang="ts">
|
||||
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({
|
||||
name: "AddCommentComponent",
|
||||
|
@@ -89,11 +89,7 @@ import { PropType, computed, defineComponent, ref, watch } from "vue";
|
||||
import { useI18n } from "vue-i18n";
|
||||
|
||||
// Types
|
||||
import {
|
||||
User,
|
||||
UserGroup,
|
||||
UserGroupOrUser,
|
||||
} from "ChillMainAssets/types";
|
||||
import { User, UserGroup, UserGroupOrUser } from "ChillMainAssets/types";
|
||||
|
||||
// Components
|
||||
import AddPersons from "ChillPersonAssets/vuejs/_components/AddPersons.vue";
|
||||
|
Reference in New Issue
Block a user