File tree Expand file tree Collapse file tree 3 files changed +13
-10
lines changed Expand file tree Collapse file tree 3 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 1
1
module . exports = {
2
+ arrowParens : 'always' ,
3
+ bracketSpacing : true ,
4
+ endOfLine : 'lf' ,
5
+ htmlWhitespaceSensitivity : 'strict' ,
6
+ jsxBracketSameLine : false ,
7
+ jsxSingleQuote : true ,
2
8
printWidth : 80 ,
3
- tabWidth : 2 ,
4
- useTabs : false ,
9
+ proseWrap : 'never' ,
10
+ quoteProps : 'as-needed' ,
5
11
semi : false ,
6
12
singleQuote : true ,
13
+ tabWidth : 2 ,
7
14
trailingComma : 'es5' ,
8
- bracketSpacing : true ,
9
- jsxBracketSameLine : false ,
10
- arrowParens : 'always' ,
11
- proseWrap : 'never' ,
12
- htmlWhitespaceSensitivity : 'strict' ,
13
- endOfLine : 'lf' ,
15
+ useTabs : false ,
16
+ vueIndentScriptAndStyle : false ,
14
17
}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ const mountBaseLink = (options = {}) => {
6
6
RouterLink : {
7
7
functional : true ,
8
8
render ( h , { slots, data } ) {
9
- return < a data-router-link = " true" > { slots ( ) . default } </ a >
9
+ return < a data-router-link = ' true' > { slots ( ) . default } </ a >
10
10
} ,
11
11
} ,
12
12
} ,
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export default {
24
24
// root node.
25
25
return props .routes .map ((route ) => (
26
26
< BaseLink
27
- tag= " li "
27
+ tag= ' li '
28
28
key= {route .name }
29
29
to= {route}
30
30
exact- active- class = {$style .active }
You can’t perform that action at this time.
0 commit comments