11 lines
129 B
Vue
11 lines
129 B
Vue
|
<template>
|
||
|
<router-view />
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from "vue";
|
||
|
export default {
|
||
|
name: "App",
|
||
|
};
|
||
|
</script>
|