Skip to content

安装

vue-cli4

  • 包装 vue-cli4

    shell
    npm install @vue/cli -g
  • 创建项目

    shell
    vue create projectName
    1. Please pick a preset
      • Manually select features 自定义安装
    2. Check the features needed for your project
      • 空格选择需要的
      • 回车确定
    3. Choose a version of Vue.js that you want to start the project with vue的版本
      • 2
      • 3
    4. Use history mode for router 是否选择 history 路由模式
      • y
      • n
    5. Use class-style component syntax 使用css预处理器吗
    6. Use Babel alongside TypeScript (required for modern mode, auto-detected polyfills, transpliting JSX)N
    7. Pick a linter / formatter configBasic
    8. Pick additional lint featuresLint on save
    9. Where do you prefer placing config for Babel, ESLint, etc. ? 配置文件放哪?
      • ==In dedicated config files== 单独当一个文件夹里
      • In package.json
    10. Save this as a preset for future projects 此次配置保存给未来使用
  • 旧项目升级到新版

    shell
    vue add vue-next