16 lines
216 B
Vue
16 lines
216 B
Vue
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
|
|
export default defineComponent({
|
|
name: "App",
|
|
data() {
|
|
return {
|
|
title: "",
|
|
};
|
|
},
|
|
});
|
|
</script>
|