App.vue
914 Bytes
<template>
<nav class="navbar navbar-expand-sm bg-primary navbar-dark">
<a class="navbar-brand" href="#">梦幻合合合</a>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#">玩家修改</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#/about">玩家查询</a>
</li>
</ul>
</nav>
<component :is="currentView" />
</template>
<script setup>
import { ref, computed } from 'vue'
import Home from './components/PlayerEdit.vue'
import About from './components/About.vue'
import NotFound from './components/NotFound.vue'
const routes = {
'/': Home,
'/about': About
}
const currentPath = ref(window.location.hash)
window.addEventListener('hashchange', () => {
currentPath.value = window.location.hash
})
const currentView = computed(() => {
return routes[currentPath.value.slice(1) || '/'] || NotFound
})
</script>