当前位置: 首页 > 工具软件 > vue-jekyll > 使用案例 >

[vue] vue项目

牟星火
2023-12-01

安装vue cli 脚手架

npm install -g @vue/cli

vue 查看是否安装成功

D:\dxby\workspace\study\testgit\vuedemo>vue
Usage: vue <command> [options]

Options:
  -V, --version                              output the version number
  -h, --help                                 output usage information

Commands:
  create [options] <app-name>                create a new project powered by vue-cli-service
  add [options] <plugin> [pluginOptions]     install a plugin and invoke its generator in an already created project
  invoke [options] <plugin> [pluginOptions]  invoke the generator of a plugin in an already created project
  inspect [options] [paths...]               inspect the webpack config in a project with vue-cli-service
  serve [options] [entry]                    serve a .js or .vue file in development mode with zero config
  build [options] [entry]                    build a .js or .vue file in production mode with zero config
  ui [options]                               start and open the vue-cli ui
  init [options] <template> <app-name>       generate a project from a remote template (legacy API, requires @vue/cli-init)
  config [options] [value]                   inspect and modify the config
  upgrade [semverLevel]                      upgrade vue cli service / plugins (default semverLevel: minor)
  info                                       print debugging information about your environment

  Run vue <command> --help for detailed usage of given command.

创建vue项目

vue create <项目名称>

提示两次选择, 选择default, yarn

Vue CLI v3.11.0
? Please pick a preset: default (babel, eslint)
? Pick the package manager to use when installing dependencies: Yarn

 

 类似资料: