Skip to content

Commit

Permalink
increased indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ruthrootz committed Jun 30, 2021
1 parent bd56207 commit 644fda2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
22 changes: 11 additions & 11 deletions src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ import Timer from '../views/Timer.vue';
Vue.use(VueRouter);

const routes = [
{
path: '/',
name: 'timer',
component: Timer,
},
{
path: '/algorithms',
name: 'algorithms',
component: Algorithms,
},
{
path: '/',
name: 'timer',
component: Timer,
},
{
path: '/algorithms',
name: 'algorithms',
component: Algorithms,
},
];

const router = new VueRouter({
routes,
routes,
});

export default router;
16 changes: 8 additions & 8 deletions src/store/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import Vuex from 'vuex';
Vue.use(Vuex);

export default new Vuex.Store({
state: {
},
mutations: {
},
actions: {
},
modules: {
},
state: {
},
mutations: {
},
actions: {
},
modules: {
},
});

0 comments on commit 644fda2

Please sign in to comment.