Files
vue3-tutorial/docs/chapter1/02_安装TS.md
zxfjd3g 832b961d34 doc
2020-11-12 21:07:26 +08:00

14 lines
226 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 2. 安装 TypeScript
命令行运行如下命令,全局安装 TypeScript
```bash
npm install -g typescript
```
安装完成后,在控制台运行如下命令,检查安装是否成功(3.x)
```bash
tsc -V
```