11 lines
129 B
Vue
Raw Normal View History

2022-04-05 10:31:31 +08:00
<template>
<router-view />
</template>
<script lang="ts">
import Vue from "vue";
export default {
name: "App",
};
2022-05-25 22:00:30 +08:00
</script>