File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ singleQuote : true ,
3
+ semi : false
4
+ }
Original file line number Diff line number Diff line change 1
1
import { createRouter , createWebHistory } from 'vue-router'
2
- import EventList from '../views/EventList.vue'
2
+ import EventList from '@/views/EventList.vue'
3
+ import About from '@/views/About.vue'
3
4
4
5
const routes = [
5
6
{
@@ -10,11 +11,7 @@ const routes = [
10
11
{
11
12
path : '/about' ,
12
13
name : 'About' ,
13
- // route level code-splitting
14
- // this generates a separate chunk (about.[hash].js) for this route
15
- // which is lazy-loaded when the route is visited.
16
- component : ( ) =>
17
- import ( /* webpackChunkName: "about" */ '../views/About.vue' )
14
+ component : About
18
15
}
19
16
]
20
17
Original file line number Diff line number Diff line change 1
- import { createStore } from " vuex" ;
1
+ import { createStore } from ' vuex'
2
2
3
3
export default createStore ( {
4
4
state : { } ,
5
5
mutations : { } ,
6
6
actions : { } ,
7
7
modules : { }
8
- } ) ;
8
+ } )
You can’t perform that action at this time.
0 commit comments