feat: add SingleRecordMnt component for student record maintenance with search, add, edit, view, and delete functionalities

This commit is contained in:
skytek_xinliang
2026-03-26 11:24:37 +08:00
parent 507afcc99c
commit 069141794e
116 changed files with 15247 additions and 107 deletions
+13 -1
View File
@@ -4,5 +4,17 @@ import vuetify from 'eslint-config-vuetify'
export default vuetify({
ts: true,
},{
extends: [eslintConfigPrettier]
extends: [eslintConfigPrettier],
rules: {
'vue/no-required-prop-with-default': 'off',
'vue/attributes-order': 'off',
'vue/no-template-shadow': 'off',
'@typescript-eslint/unified-signatures': 'off',
'@typescript-eslint/member-ordering': 'off',
'unicorn/prefer-query-selector': 'off',
'unicorn/no-array-sort':'off',
"vue/no-mutating-props" : "off",
'unicorn/prefer-logical-operator-over-ternary': 'off',
'unicorn/prefer-structured-clone': 'off',
}
})