摘要:
<a-input @blur="validateDomainBlur" placeholder="请输入需要绑定的域名" v-decorator="['domain', { rules: [ { required: false, message: '请输入域名' }, ], getValueFrom 阅读全文
摘要:
1. 安装 html 插件 yarn add html-webpack-plugin -D 2. 在 webpack.config.js 引入 const HtmlWebpackPlugin = require('html-webpack-plugin') plugins: [ new HtmlWe 阅读全文
摘要:
npm i webpack-dev-server –D 安装插件 在 webpack.config.js 添加配置 contentBase 配置开发服务运行时的文件根目录 host:开发服务器监听的主机地址 compress 开发服务器是否启动gzip等压缩 port:开发服务器监听的端口 devS 阅读全文
摘要:
1. 先修改 properties 文件的字符编码,不然出现乱码,进行如下设置 2. 类路径下创建 i18n 目录存放配置文件 点击红色方框可以编辑多个配置文件 比如: 3. 添加路径配置 注意 这里如果配置错误 会出现 springboot2.0 国际化页面 ?? XXX_zh_CN?? 这个错误 阅读全文
摘要:
1. 基本配置文件 1. webpack.config.js const path = require('path') module.exports = { mode: 'production', entry: './src/index.js', output: { filename: 'bundl 阅读全文
摘要:
1. 设置调试器端口 2. 添加调试配置 3. 重启项目 点击调试按钮 4. 点击调试按钮会出现 404 页面 这个时候把你项目 启动的 路径复制到浏览器中 在项目断点就可以调试了 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>插入排序</tit 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
摘要:
1.添加依赖 <!--热部署--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency> 2.重新启动项目 3.测试 在 阅读全文