优化首页展示数据

This commit is contained in:
mayongjian
2024-09-08 03:36:25 +08:00
parent 7560f209d8
commit 935387a6f7
48 changed files with 249 additions and 74 deletions

27
.eslintrc.cjs Normal file
View File

@@ -0,0 +1,27 @@
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:vue/vue3-essential"
],
"overrides": [
],
"parser": "vue-eslint-parser",
"parserOptions": {
"ecmaVersion": "latest",
"parser": "@typescript-eslint/parser",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"vue"
],
"rules": {
'vue/multi-word-component-names': "off",
"@typescript-eslint/no-explicit-any": ["off"]
}
}