16 lines
377 B
Vue
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>
|