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

  • 相关阅读:
    安装高版本的docker
    Apache JMeter汉化手册
    安装python包
    Jmeter Cluster
    doc下设置永久环境变量的好方法
    jmeter非常好的博客收藏
    mysql-学习链接
    python 脚本
    常见python快捷键
    2015年心情随笔--周围太烦躁,我想静静
  • 原文地址:https://www.cnblogs.com/zwei1121/p/9275160.html
Copyright © 2011-2022 走看看