Skip to content

vue-cli 初始化 vue 项目

初始化 element-plus 项目(不使用 webpack 模板)

vue-cli 参考文档:https://cli.vuejs.org/zh/guide/

Create vue project and use vue-cli-plugin-element-plus 初始化工程

txt
1. 创建 vue 工程
$ vue create {project name}

2. 进入创建的工程目录
$ cd {project name}

3. 添加 element-plus 到工程
$ vue add element-plus

4. 启动运行(更多命令参考生成的README文件)
$ npm run serve

5. 其他
$ npm install vue-router@4
$ npm install vue-router@4 --save

$ npm install dayjs
$ npm install dayjs --save

常用命令

txt
安装但不写入package.json
$ npm install xxx

安装并写入package.json的"dependencies"中
$ npm install xxx –S
$ npm install xxx –-save

安装并写入package.json的"devDependencies"中
$ npm install xxx –D

全局安装
$ npm install xxx -g

安装指定版本
$ npm install xxx@1.2.0

检查更新
$ npm outdated

更新指定的模块,并且可以根据作用范围在后面加上 -D、-S 或 -g
注意:指定更新需要提前修改 package.json 中的版本号。
$ npm update xxx

删除指定模块;
$ npm uninstall xxx

删除全局模块
$ npm uninstall -g xxx

查看全局安装的包
$ npm list --depth 0 -g

查看当前工程安装的包
$ npm list --depth 0