02 2021 档案
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 阅读(445) 评论(0) 推荐(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 阅读(319) 评论(0) 推荐(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 阅读(90) 评论(0) 推荐(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 阅读(90) 评论(0) 推荐(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 阅读(162) 评论(0) 推荐(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 阅读(125) 评论(0) 推荐(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 阅读(69) 评论(0) 推荐(0)