forked from dengzhifeng/ufutx-pc-website
43 lines
632 B
Vue
43 lines
632 B
Vue
<template>
|
||
<div id="app">
|
||
<!-- 导航栏 -->
|
||
<nav>
|
||
<ul>
|
||
<li><router-link to="/">首页</router-link></li>
|
||
<li><router-link to="/about">关于我们</router-link></li>
|
||
</ul>
|
||
</nav>
|
||
|
||
<!-- 路由出口:渲染当前页面 -->
|
||
<main>
|
||
<router-view />
|
||
</main>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
// App 组件逻辑
|
||
</script>
|
||
|
||
<style>
|
||
nav ul {
|
||
display: flex;
|
||
list-style: none;
|
||
padding: 0;
|
||
}
|
||
|
||
nav li {
|
||
margin-right: 1rem;
|
||
}
|
||
|
||
nav a {
|
||
text-decoration: none;
|
||
color: #333;
|
||
}
|
||
|
||
nav a.router-link-exact-active {
|
||
color: #007bff;
|
||
font-weight: bold;
|
||
}
|
||
</style>
|