zoukankan      html  css  js  c++  java
  • vue打包

    npm install
    npm run dev
    npm run build

    项目运行
    1.环境依赖 npm i

    2.本地运行 npm run serve

    3.打包运行 npm run build

     @types/node

    npm install --save @types/node

    npm install @types/node --save

     =======================================================================

    # clone the project
    git clone https://github.com/PanJiaChen/vue-element-admin.git
    
    # enter the project directory
    cd vue-element-admin
    
    # install dependency
    npm install
    
    # develop
    npm run dev
    ==============================================================================

    Debugger for Firefox

    Debugger for Chrome


    {
    "version": "0.2.0",
    "configurations": [
    {
    "type": "chrome",
    "request": "launch",
    "name": "vuejs: chrome",
    "url": "http://localhost:8080",
    "webRoot": "${workspaceFolder}/src",
    "breakOnLoad": true,
    "sourceMapPathOverrides": {
    "webpack:///./src/*": "${webRoot}/*"
    }
    },
    {
    "type": "firefox",
    "request": "launch",
    "name": "vuejs: firefox",
    "url": "http://localhost:8080",
    "webRoot": "${workspaceFolder}/src",
    "pathMappings": [{ "url": "webpack:///src/", "path": "${webRoot}/" }]
    }
    ]
    }

    构建步骤

    # 安装依赖
    npm install

    运行开发服务器 localhost:4000

    npm run dev

    编译(压缩JS和CSS等)

    npm run build

    单元测试

    npm run unit

    运行所有测试

    npm test

  • 相关阅读:
    scratch第四集——过河孙小弟
    scratch第二集——scratch中的知识帧动画怎么用?
    scratch第九集——雷霆打怪大作战
    scratch第三集——scratch列表方法
    scratch第一集——飞机大作战
    position
    BOM与DOM
    grid布局
    登录界面
    用js输出同样字符出现的次数
  • 原文地址:https://www.cnblogs.com/zwei1121/p/9275160.html
Copyright © 2011-2022 走看看