Skip to content

Commit 6d142dd

Browse files
committed
fix ./App.vue and ./app conflict
1 parent 3a72535 commit 6d142dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
File renamed without changes.

client/src/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Vue from 'vue'
2-
import App from './App'
2+
import Root from './Root'
33

44
/**
55
* This is the Vuex store and it is
@@ -42,5 +42,5 @@ new Vue({
4242
store, // injects the Store into all components
4343
router, // make Router work with the application
4444
el: '#app',
45-
render: h => h(App),
45+
render: h => h(Root),
4646
})

0 commit comments

Comments
 (0)