摘要:
1.安装依赖 npm i url-loader -D file-loader 解决CSS等文件中的引入图片路径问题 url-loader 当图片小于limit的时候会把图片BASE64编码,大于limit参数的时候还是使用file-loader 进行拷贝 2.js 中使用图片 import logo 阅读全文
摘要:
@babel/plugin-proposal-class-properties (1) 这个是用来编译类的插件 (2) 安装插件 npm i @babel/plugin-proposal-class-properties -D (3)webpack.config.js 配置 { test: /\.m 阅读全文
摘要:
1.Es6 转Es5 npm i babel-loader @babel/core @babel/preset-env -D 2.webpack.config.js { test: /\.m?js$/, exclude: /(node_modules|bower_components)/, //排除 阅读全文
摘要:
module.exports = { root: true, env: { node: true }, 'extends': [ 'plugin:vue/essential', '@vue/standard' ], rules: { 'no-console': 0, // 在块级作用域外访问块内定义 阅读全文
摘要:
<a-input @blur="validateDomainBlur" placeholder="请输入需要绑定的域名" v-decorator="['domain', { rules: [ { required: false, message: '请输入域名' }, ], getValueFrom 阅读全文