mirror of
https://github.com/mandiant/capa.git
synced 2026-02-04 11:07:53 -08:00
16 lines
358 B
JavaScript
16 lines
358 B
JavaScript
import { createRouter, createWebHashHistory } from "vue-router";
|
|
import ImportView from "../views/ImportView.vue";
|
|
|
|
const router = createRouter({
|
|
history: createWebHashHistory(import.meta.env.BASE_URL),
|
|
routes: [
|
|
{
|
|
path: "/",
|
|
name: "home",
|
|
component: ImportView
|
|
}
|
|
]
|
|
});
|
|
|
|
export default router;
|