3.0.0-alpha.6
https://gist.github.com/yooouuri/07949278d01a55035756eda8200b2614
vue create <name>
After it add the vue router and create a component with a router-view and some router-links
Router should work
[Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.
Add { compiler: true }
in vue.config.js
.
FYI
It is now called { runtimeCompiler: true }
in vue.config.js
.
Most helpful comment
Add
{ compiler: true }
invue.config.js
.