Skip to content

Commit 6136952

Browse files
authored
Merge pull request #237 from gharlan/patch-1
Vuetify: fix console output of generator
2 parents fcaa1b0 + 5135aab commit 6136952

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/generators/VuetifyGenerator.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ import ${titleLc}Routes from './${titleLc}';
5252
export default new VueRouter({
5353
// ...
5454
routes: [
55-
...${titleLc}Routes,
55+
${titleLc}Routes,
5656
]
5757
});
5858
5959
// Register the modules in the store
6060
// src/store/index.js
6161
import ${titleLc}Service from '../services/${titleLc}';
62-
import makeCrudModule from './store/modules/crud';
62+
import makeCrudModule from './modules/crud';
6363
6464
export const store = new Vuex.Store({
6565
// ...

0 commit comments

Comments
 (0)