zoukankan      html  css  js  c++  java
  • Vue Study [1]: Vue Setup

    Description

    The article for vue.js Setup.
    Original post link:https://www.cnblogs.com/markjiang7m2/p/10783456.html
    Source code:https://gitee.com/Sevenm2/Vue.Web/tree/master/Vue.Web

    Development Environment Preparation

    Node.js

    If we want to develop Vue.js, we should install Node.js firstly.
    Actually I have installed Node.js in my environment when I started my another repository TaxSystem, but without any note to mark down the action. I will write down the procedure here.

    1.Install Node.js
    Download Node.js install package from nodejs.org and install. You should select your version.
    NodeJs_download

    Set environment variables
    Node_EnvirPath

    And then you can input the command line to verify if Node.js is installed successfully.

    node -v
    npm -v

    Node_v.png

    2.Environment Configuration
    The node cache files and global modules will be installed and saved into C:UsersxxxAppDataRoaming pm by default. We have better to change the path as our system disk space is limited.

    Create 2 folders node_global & node_cache
    Node_path

    Reset the configuration in CMD.

    npm config set prefix "D:Mark
    odejs
    ode_global"
    npm config set cache "D:Mark
    odejs
    ode_cache"

    Add the environment variables
    Node_global_EnvirPath

    vue-cli

    Install vue-cli as a global module.

    npm install -g vue-cli

    Npm_vue

    Input a command line to verify if vue-cli is installed successfully.
    Vue_v

    Setup a vue project

    Use Visual Studio Code to open the folder you want to create the project in.
    Click Ctrl + ~ to open the Terminal.
    Input the below command line to new a project based on webpack and select the setting as requested.

    vue init webpack projectname

    Vue_newproject

    Config the PORT No.
    Vue_configport

    Enter the project folder and run the project

    cd Vue.Web
    npm run dev

    Vue_port

    Then we can view the Website in browser.
    Vue_demo

    We can also build the project

    npm run build .

    Vue_build

    Vue_dist

    vetur

    It is an extension Vue tooling for VS Code.

    1.Install vetur
    Click Ctrl + P, input ext install vetur, then install the extension.

    2.Add the below in User settings
    Click Ctrl + Shift + P, input Preferences: Open User Settings.
    Add the below in User settings

    "emmet.syntaxProfiles": {
      "vue-html": "html",
      "vue": "html"
    }

    Build Setup command line

    # install dependencies
    npm install
    

    # serve with hot reload at localhost:8080
    npm run dev

    # build for production with minification
    npm run build

    # build for production and view the bundle analyzer report
    npm run build --report

    # run unit tests
    npm run unit

    # run e2e tests
    npm run e2e

    # run all tests
    npm test

  • 相关阅读:
    《我也能做CTO之程序员职业规划》之十五: 智商
    《.Net 软件设计新思维:像搭积木一样搭建软件》成书背后的故事
    测试有道:微软测试技术心得
    GTUG 推荐这本书给大家
    测试有道:微软测试技术心得
    独具匠心的好书:评《构建高性能Web站点》
    敏捷软件开发模型SCRUM
    JSP和Servlet性能优化
    软件项目管理的圣经人月神话(中)
    探讨JAR文件无限可能性
  • 原文地址:https://www.cnblogs.com/letyouknowdotnet/p/10962746.html
Copyright © 2011-2022 走看看