在路由对象里边添加history模式就不显示# mode:'history'
// 4.通过规则创建对象
const router = new VueRouter({
routes,
// 默认模式为hash 带#
// history 不带#
mode:'history'
})
想把端口号8000换成其他的 比如我这样的3000更换端口号教程
在路由对象里边添加history模式就不显示# mode:'history'
// 4.通过规则创建对象
const router = new VueRouter({
routes,
// 默认模式为hash 带#
// history 不带#
mode:'history'
})
想把端口号8000换成其他的 比如我这样的3000更换端口号教程