Newer
Older
smart-home-server / webclient-vue / src / router / index.js
@Eugene Sukhodolskiy Eugene Sukhodolskiy 8 hours ago 187 bytes Scaffold Vue web client
import { createRouter, createWebHashHistory } from "vue-router";
import { routes } from "./routes";

export const router = createRouter({
  history: createWebHashHistory(),
  routes,
});