WIP MMCM
This commit is contained in:
12
src/App.vue
12
src/App.vue
@@ -6,8 +6,16 @@ import Wizard from "./components/Wizard.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<wizard v-if="$route.path !== '/'"></wizard>
|
||||
<router-view></router-view>
|
||||
<div>
|
||||
<wizard v-if="$route.path !== '/'"></wizard>
|
||||
<router-view v-slot="{ Component, route }">
|
||||
<transition name="slide-left">
|
||||
<div :key="route.path">
|
||||
<component :is="Component"/>
|
||||
</div>
|
||||
</transition>
|
||||
</router-view>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
Reference in New Issue
Block a user