zoukankan      html  css  js  c++  java
  • vue-cli快速创建项目,交互式

    vue脚手架用于快速构建vue项目基本架构  

    下面开始安装vue-cli

    npm install -g @vue/cli
    # OR
    yarn global add @vue/cli
    以上两句命令都可以安装,安装完成后用cmd,输入vue -V查看是否安装成功以及版本号

    创建完成后开始创建第一个项目
    1.vue create ***//自定义项目名
    2.输入成功后会出现

    ? Please pick a preset:
    Default ([Vue 2] babel, eslint)
    > Default (Vue 3 Preview) ([Vue 3] babel, eslint)
    Manually select features

    使用第三个自己选择模块

    3.点击后出现

    ? Please pick a preset: Manually select features
    ? Check the features needed for your project: (Press <space> to select, <a> to toggle all, <i> to invert selection)
    >(*) Choose Vue version
    (*) Babel
    ( ) TypeScript
    ( ) Progressive Web App (PWA) Support
    ( ) Router
    ( ) Vuex
    ( ) CSS Pre-processors
    (*) Linter / Formatter
    ( ) Unit Testing
    ( ) E2E Testing

    *为要安装的模块,按空格键选中,enter下一步

    4.后面的操作可翻译自行选择

    5.最后项目开始构建,实践可能会有点长

    6.出现蓝色的

    $ cd hello
    $ npm run serve

    复制上面的指令,让项目跑起来

    7.

    App running at:
    - Local: http://localhost:8080/
    - Network: http://192.168.3.8:8080/

    Note that the development build is not optimized.
    To create a production build, run npm run build.

    到这里之后就可以把上面的链接复制到浏览器打开,一个项目就创建好了


  • 相关阅读:
    leetcode — remove-duplicates-from-sorted-list
    leetcode — word-search
    leetcode — subsets-ii
    leetcode — subsets
    leetcode — combinations
    leetcode — minimum-window-substring
    leetcode — sort-colors
    leetcode — search-a-2d-matrix
    leetcode — set-matrix-zeroes
    bzoj 3261: 最大异或和 可持久化Trie
  • 原文地址:https://www.cnblogs.com/xiaopo/p/14277298.html
Copyright © 2011-2022 走看看