mirror of
http://112.124.100.131/happyinsurance_eco/ebiz-sunful-eco-web.git
synced 2025-12-06 17:36:50 +08:00
- 新增 qualification-v1.vue 组件,用于展示荣誉资质列表 - 在 qualification.vue 中实现滑动功能,添加左右滑动按钮和逻辑 - 优化 common-content.vue 样式,增加内容区域样式 - 调整 qualification-box.vue 样式,限制图片最大宽度 - 新增多张荣誉资质图片资源
18 lines
558 B
JavaScript
18 lines
558 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
extends: ['plugin:vue/essential', '@vue/prettier'], //需要dev依赖里安装eslint-config-prettier
|
|
// rules: {
|
|
// //'off'或'0':关闭 'warn'或'1':警告 "error"或者"2":报错
|
|
// 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'error',
|
|
// 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'error',
|
|
// //下面是重要设置,错误标记
|
|
// 'prettier/prettier': 'error'
|
|
// },
|
|
parserOptions: {
|
|
parser: 'babel-eslint'
|
|
}
|
|
}
|