Answers for "createrouter vue history with Hash"

0

createrouter vue history with 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