-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a66d25
commit 47cbfbc
Showing
1 changed file
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<template> | ||
<nav> | ||
<ol> | ||
<li><router-link to="/">首頁</router-link></li> | ||
<li><router-link to="/about">關於單車節</router-link></li> | ||
<li><router-link to="/info">參加資訊</router-link></li> | ||
<li><router-link to="/activities">主題活動</router-link></li> | ||
<li><router-link to="/forum">知識論壇</router-link></li> | ||
<li><router-link to="/partners">合作夥伴</router-link></li> | ||
<li><router-link to="/souvenir">紀念品預購</router-link></li> | ||
</ol> | ||
</nav> | ||
<NavBar /> | ||
<router-view></router-view> | ||
</template> | ||
|
||
<script setup> | ||
import NavBar from './components/NavBar.vue'; | ||
const props = defineProps({ | ||
theme: { | ||
type: String, | ||
default: 'light', // dark | ||
}, | ||
}); | ||
</script> |