13 lines
125 B
Vue
13 lines
125 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: "App",
|
|
};
|
|
</script>
|