9 lines
186 B
Vue
9 lines
186 B
Vue
<template>
|
|
<div class="min-h-screen flex items-center justify-center">
|
|
<RouterView />
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import { RouterView } from 'vue-router'
|
|
</script>
|