history模式吗?
1:将router放到el之前试试
new Vue({ router, el: '#app', store, template: '<App/>', components: {App} })
2:采用mount挂载
new Vue({ router, store, render: h => h(App) }).$mount('#app')