添加登录逻辑

This commit is contained in:
bobobobo
2025-12-24 02:01:34 +08:00
parent 8271e4e0bb
commit 6f418fae8a
35 changed files with 928 additions and 94 deletions

23
.prettierrc.js Normal file
View File

@@ -0,0 +1,23 @@
// @ts-check
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
}