feat: use vue-router 4 for vue3

This commit is contained in:
Dominik Pschenitschni 2021-08-20 15:17:19 +02:00
parent b31da0cefe
commit 72518212da
No known key found for this signature in database
GPG key ID: B257AC0149F43A77
11 changed files with 97 additions and 74 deletions

View file

@ -53,9 +53,11 @@
/>
<!-- This router view is used to show the task popup while keeping the gantt chart itself -->
<transition name="modal">
<router-view/>
</transition>
<router-view v-slot="{ Component }">
<transition name="modal">
<component :is="Component" />
</transition>
</router-view>
</card>
</div>

View file

@ -212,9 +212,11 @@
</div>
<!-- This router view is used to show the task popup while keeping the kanban board itself -->
<transition name="modal">
<router-view/>
</transition>
<router-view v-slot="{ Component }">
<transition name="modal">
<component :is="Component" />
</transition>
</router-view>
<transition name="modal">
<modal

View file

@ -128,9 +128,11 @@
</card>
<!-- This router view is used to show the task popup while keeping the kanban board itself -->
<transition name="modal">
<router-view/>
</transition>
<router-view v-slot="{ Component }">
<transition name="modal">
<component :is="Component" />
</transition>
</router-view>
</div>
</template>

View file

@ -179,9 +179,11 @@
</card>
<!-- This router view is used to show the task popup while keeping the table view itself -->
<transition name="modal">
<router-view/>
</transition>
<router-view v-slot="{ Component }">
<transition name="modal">
<component :is="Component" />
</transition>
</router-view>
</div>
</template>