vue 中设置 history与hash模式
作者:互联网
/*vue2*/
import Vue from 'vue';
import Router from 'vue-router';
Vue.use(Router);
const router = new Router({
mode: 'history',// 设置history与hash
routes: []
})
/*vue3*/
// 引入 history => createWebHistory hash => createWebHashHistory
import { createRouter, createWebHistory } from 'vue-router';
const routes = [];
const router = createRouter({
history: createWebHistory(), //设置 history与 hash
routes
});
标签:vue,const,createWebHistory,router,hash,history 来源: https://blog.csdn.net/weixin_46275177/article/details/120725875