feat: 欢迎&登录&注册&stylist页面

This commit is contained in:
zhangyh
2025-10-10 11:00:08 +08:00
parent 4843c9bfda
commit 312b25d287
17 changed files with 1223 additions and 116 deletions

View File

@@ -2,6 +2,22 @@
require('@rushstack/eslint-patch/modern-module-resolution')
module.exports = {
rules: {
// 忽略未使用的变量和参数
'@typescript-eslint/no-unused-vars': 'off',
'no-unused-vars': 'off',
// 或者设置为警告级别
// '@typescript-eslint/no-unused-vars': 'warn',
// 'no-unused-vars': 'warn',
// Vue 相关规则
'vue/multi-word-component-names': 'off',
'vue/no-unused-vars': 'off',
'vue/no-mutating-props': 'off',
'no-empty-pattern': 'off'
},
root: true,
'extends': [
'plugin:vue/vue3-essential',