13 lines
169 B
Vue
13 lines
169 B
Vue
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router'
|
|
</script>
|
|
|
|
<template>
|
|
<div id="app">
|
|
<RouterView />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|