element主题生成工具
摘要:下载地址: https://files.cnblogs.com/files/ligenyun/element%E4%B8%BB%E9%A2%98%E7%94%9F%E6%88%90%E5%B7%A5%E5%85%B7.rar 1.安装elementui的自定义主题工具 npm i element-t
阅读全文
posted @
2021-02-20 17:03
biind
阅读(429)
推荐(0) 编辑
nvm 安装及使用(npm版本管理工具)
摘要:C:\Users\Administrator\AppData\Roaming\nvm node_mirror: https://npm.taobao.org/mirrors/node/npm_mirror: https://npm.taobao.org/mirrors/npm/ nvm instal
阅读全文
posted @
2021-02-20 14:53
biind
阅读(186)
推荐(0) 编辑
webpack入门四 安装vue,并打包
摘要://vue开发 npm install vuewebpack.config.js const HtmlWebpackPlugin = require('html-webpack-plugin'); const CopyPlugin = require("copy-webpack-plugin");
阅读全文
posted @
2021-02-07 16:25
biind
阅读(68)
推荐(0) 编辑
webpack 相关
摘要:const HtmlWebpackPlugin = require('html-webpack-plugin'); const CopyPlugin = require("copy-webpack-plugin"); const {CleanWebpackPlugin} = require("cle
阅读全文
posted @
2021-02-07 16:07
biind
阅读(74)
推荐(0) 编辑
webpack 入门三 打包css、图片、静态资源
摘要://搭建环境 //package.json文件 npm init //安装webpack npm install webpack -g npm install webpack-cli -g //插件 npm install html-webpack-plugin --save-dev npm ins
阅读全文
posted @
2021-02-05 21:10
biind
阅读(146)
推荐(0) 编辑
webpack 入门二 webpack.config.js 用配置打包js
摘要://搭建环境 //package.json文件 npm init //安装webpack npm install webpack -g npm install webpack-cli -g //简单打包 webpack ./a.js ./bundle.js //插件 npm install html
阅读全文
posted @
2021-02-05 20:52
biind
阅读(103)
推荐(0) 编辑
webpack 入门一 简单打包js
摘要://搭建环境 //package.json文件 npm init //安装webpack npm install webpack -g npm install webpack-cli -g //简单打包 webpack ./a.js ./bundle.js
阅读全文
posted @
2021-02-05 20:47
biind
阅读(59)
推荐(0) 编辑