17 lines
331 B
Vue
17 lines
331 B
Vue
<!--
|
|
author: Kane Wang <wangkane@qq.com>
|
|
date: 2025-10-14 15:57:34
|
|
component: AppMain
|
|
Copyright © CPIC All rights reserved
|
|
-->
|
|
<template>
|
|
<router-view />
|
|
</template>
|
|
<script lang="ts">
|
|
export default {
|
|
name: "AppMain",
|
|
components: [],
|
|
setup() {},
|
|
};
|
|
</script>
|
|
<style lang="sass" scoped></style> |