mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-12 12:08:21 +08:00
32 lines
574 B
Vue
32 lines
574 B
Vue
|
|
<template>
|
||
|
|
<img
|
||
|
|
alt="Vue logo"
|
||
|
|
src="../assets/logo.svg"
|
||
|
|
width="300"
|
||
|
|
>
|
||
|
|
<app-navigation />
|
||
|
|
<router-view />
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts">
|
||
|
|
import {defineComponent} from 'vue';
|
||
|
|
import AppNavigation from '/@/components/AppNavigation.vue';
|
||
|
|
export default defineComponent({
|
||
|
|
name: 'App',
|
||
|
|
components: {
|
||
|
|
AppNavigation,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
#app {
|
||
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
text-align: center;
|
||
|
|
color: #2c3e50;
|
||
|
|
margin-top: 60px;
|
||
|
|
}
|
||
|
|
</style>
|