ufutx-pc-website/src/App.vue

43 lines
632 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>