添加组件及页面

This commit is contained in:
zhengw
2026-01-21 17:05:30 +08:00
parent a89e69c381
commit 7ff1a911dd
54 changed files with 1078 additions and 1009 deletions

30
.prettierrc Normal file
View File

@@ -0,0 +1,30 @@
{
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "all",
"arrowParens": "always",
"singleQuote": true,
"semi": true,
"bracketSpacing": true,
"overrides": [
{
"files": [ "*.wxss", "*.acss" ],
"options": {
"parser": "css"
}
},
{
"files": [ "*.wxml", "*.axml" ],
"options": {
"parser": "html"
}
},
{
"files": [ "*.wxs", "*.sjs" ],
"options": {
"parser": "babel"
}
}
]
}