9 lines
155 B
Vue
9 lines
155 B
Vue
|
|
<script setup lang="ts">
|
|
import index from './pages/index.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<router-view /> <!-- Routed components appear here -->
|
|
</template>
|