feat: implement modals with vue router 4 #816

Merged
konrad merged 62 commits from dpschen/frontend:feature/vue3-modals-with-router-4 into main 2022-02-05 16:49:04 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 5867f79735 - Show all commits

View File

@ -152,7 +152,7 @@
</template>
<script>
import Editor from '@/components/input/editor.vue'
import AsyncEditor from '@/components/input/AsyncEditor'
import TaskCommentService from '../../../services/taskComment'
import TaskCommentModel from '../../../models/taskComment'
@ -162,7 +162,7 @@ import {mapState} from 'vuex'
export default {
name: 'comments',
components: {
Editor,
Editor: AsyncEditor,
},
props: {
taskId: {

View File

@ -30,7 +30,7 @@
</template>
<script>
import Editor from '@/components/input/editor.vue'
import AsyncEditor from '@/components/input/AsyncEditor'
import {LOADING} from '@/store/mutation-types'
import {mapState} from 'vuex'
@ -38,7 +38,7 @@ import {mapState} from 'vuex'
export default {
name: 'description',
components: {
Editor,
Editor: AsyncEditor,
},
data() {
return {