需要修复商城顶部筛选左右滑动问题

This commit is contained in:
cbb
2025-12-24 17:53:13 +08:00
parent 6f418fae8a
commit b67f9611c7
48 changed files with 1067 additions and 221 deletions

22
.prettierrc.cjs Normal file
View File

@@ -0,0 +1,22 @@
module.exports = {
printWidth: 74,
tabWidth: 2,
semi: false,
arrowParens: 'avoid',
singleQuote: true,
trailingComma: 'none',
bracketSpacing: true,
htmlWhitespaceSensitivity: 'ignore',
endOfLine: 'auto',
insertPragma: false,
proseWrap: 'preserve',
'objectCurly-newline': [
'error',
{
multiline: true
}
],
'array-bracket-newline': ['error', 'consistent'],
vueIndentScriptAndStyle: true
}