drawing logic back into component

This commit is contained in:
2022-12-01 20:37:03 +01:00
parent 373b49cc6b
commit 0276a4973e
6 changed files with 286 additions and 295 deletions

View File

@ -14,13 +14,12 @@ module.exports = {
rules: {
// override/add rules settings here, such as:
// 'vue/no-unused-vars': 'error'
'vue/match-component-import-name': 'warn',
'vue/no-ref-object-destructure': 'warn',
'vue/no-required-prop-with-default': 'warn',
'vue/no-restricted-class': 'warn',
'vue/no-template-target-blank' : 'warn',
'vue/no-this-in-before-route-enter' : 'warn',
'vue/prefer-prop-type-boolean-first' : 'warn',
"vue/match-component-import-name": "warn",
"vue/no-ref-object-destructure": "warn",
"vue/no-required-prop-with-default": "warn",
"vue/no-restricted-class": "warn",
"vue/no-template-target-blank": "warn",
"vue/no-this-in-before-route-enter": "warn",
"vue/prefer-prop-type-boolean-first": "warn",
},
};