📜  createrouter vue history with Hash - 不管是什么代码示例

📅  最后修改于: 2022-03-11 14:56:02.052000             🧑  作者: Mango

代码示例1
import { createRouter, createWebHashHistory } from 'vue-router'

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