12 lines
122 B
Vue
Raw Normal View History

2024-12-06 22:42:03 +08:00
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App'
}
</script>