困った・操作方法

Vue Router v4.xでハッシュ履歴(相対パス)指定を行う

BoundWorks

Vue Router v 4.xで、サーバーを利用しない(file://)場合などに、Vue.jsをHTML履歴ではなく、ハッシュ履歴で使いたい場合は、src/router/index.js|tsに、

const router = createRouter({
  history: createWebHashHistory('./'),
  routes
})

と記載するとローカルファイルのHTMLでもルーティングを利用することができます。

公式ドキュメントはhttps://next.router.vuejs.org/api/#createwebhashhistory に記載があります。