Answers for "createrouter vue history remove Hash"

0

createrouter vue history remove Hash

import { createRouter, createWebHistory } from 'vue-router'

const router = createRouter({
  history: createWebHistory(),
  routes: [
    //...
  ],
})
Posted by: Guest on June-13-2021
0

createrouter vue history remove Hash

import { createRouter, createWebHashHistory } from 'vue-router'

const router = createRouter({
  history: createWebHashHistory(),
  routes: [
    //...
  ],
})
Posted by: Guest on June-13-2021

Browse Popular Code Answers by Language