15 lines
219 B
Vue
15 lines
219 B
Vue
<script setup lang="ts">
|
|
import FeatureSteps from '@/FeatureSteps.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<main id="main-app">
|
|
<FeatureSteps />
|
|
</main>
|
|
</template>
|
|
|
|
<!-- <style scoped lang="scss">
|
|
#main-app {
|
|
}
|
|
</style> -->
|