0đź‘Ť
It’s likely you’re using the “runtime-only” build. If you’re using that then all your templates must be in Vue files. Since your app’s template is in the index.html
it won’t work. So either put your apps template into a Vue file and render that or use the “Runtime + Compiler” build. You can read more about that here: http://vuejs.org/guide/installation.html#Standalone-vs-Runtime-only-Build
Source:stackexchange.com