8 lines
189 B
Vue
8 lines
189 B
Vue
<template>
|
|
<WizardPage />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// Reuse the existing wizard content by importing it as a component
|
|
import WizardPage from "~/pages/wizard.vue";
|
|
</script>
|