mirror of
https://github.com/Xevion/history-of-robotics.git
synced 2025-12-11 10:07:29 -06:00
18 lines
287 B
JavaScript
18 lines
287 B
JavaScript
import Vue from 'vue';
|
|
import Router from 'vue-router';
|
|
import Home from './components/Home.vue';
|
|
|
|
Vue.use(Router);
|
|
|
|
export default new Router({
|
|
mode: 'history',
|
|
base: process.env.BASE_URL,
|
|
routes: [
|
|
{
|
|
path: '/',
|
|
name: 'Home',
|
|
component: Home,
|
|
}
|
|
],
|
|
});
|