Files
mmcm/src/App.vue
Jonathan Chevalier 206f766c69 WIP MMCM
2022-10-06 13:40:20 +02:00

16 lines
377 B
Vue

<script setup>
// This starter template is using Vue 3 <script setup> SFCs
// Check out https://vuejs.org/api/sfc-script-setup.html#script-setup
import Home from './components/Home.vue'
import Wizard from "./components/Wizard.vue";
</script>
<template>
<wizard v-if="$route.path !== '/'"></wizard>
<router-view></router-view>
</template>
<style scoped>
</style>