1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-05 23:11:24 +08:00

Built the basic ui framework

This commit is contained in:
2023-04-29 01:38:45 +08:00
parent a9c51a0d96
commit e4f6e15336
30 changed files with 9177 additions and 679 deletions

19
ui/.eslintrc.cjs Normal file
View File

@@ -0,0 +1,19 @@
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')
module.exports = {
root: true,
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript',
'@vue/eslint-config-prettier/skip-formatting'
],
parserOptions: {
ecmaVersion: 'latest'
},
rules: {
"no-cond-assign": "error",
"indent": ["error", 4]
}
}