Vue 2.0.5 is released, but this template still using 2.0.1.
It isn't. it's using ^2.0.1, which basically means "the latest version that matches 2.0.*, but at least 2.0.1". So new installations of this template would, right now, install 2.0.5.
You may want to familiarize yourself with semantic versioning and semver with npm
Hint: If you want to update an existing project folder that used this template, simply run npm install vue --save again.
Thank you for you answer.
Run npm install vue --save will only upgrade vue, but those dependencies (e.g. vue-template-compiler) wouldn't.
So I removed the folder node_modules and run npm install again. (A simple way to upgrade all~ :D)
Most helpful comment
Thank you for you answer.
Run
npm install vue --savewill only upgrade vue, but those dependencies (e.g. vue-template-compiler) wouldn't.So I removed the folder
node_modulesand runnpm installagain. (A simple way to upgrade all~ :D)