How to remove hashbang #! from url?
#!
I found option to disable hashbang in vue router documentation ( http://vuejs.github.io/vue-router/en/options.html )
You should add mode history to your router like the below
export default new Router({ mode: 'history', routes: [ { ... } ] })