github地址: 传送门
there is a Todo sample on typescript offical website using Backbone.js.
Features:
typescipt
vue.js
webpack
Use of external typings from DefinitelyTyped
Vscode
> npm install -g typescript > npm install > npm link typescript > npm start
现在不推荐用tsd来安装定义文件,推荐使用typings,且从DefinityTyped下载 指令从1.0版本前的
typings install vue --ambient --save
变成
typings install dt~vue --global --save
dt~
前缀表示从DefinityTyped下载文件
添加任务的时候,注意是调用的 @keyup.enter="addTask()"
,如果用 @keyup.enter="addTask"
的话,里面的this指向了dom元素