diff --git a/eslint.config.js b/eslint.config.js
index 7e4aff7..e95c798 100644
--- a/eslint.config.js
+++ b/eslint.config.js
@@ -20,8 +20,9 @@ export default defineFlatConfigs(
},
{
rules: {
- 'vue/valid-v-slot': ['error', { allowModifiers: true }],
- 'vue/no-multiple-template-root': 'off',
+ 'vue/valid-v-slot': ['error', { allowModifiers: true }], // allow vuetify slot modifier
+ 'vue/no-multiple-template-root': 'off', // nuxt allow it but plain vue don't
+ 'vue/html-self-closing': ['error', { html: { void: 'any' } }], // not conflict with prettier
'@typescript-eslint/no-explicit-any': 'off',
},
},
diff --git a/src/components/layout/AppDrawer.vue b/src/components/layout/AppDrawer.vue
index 581a0a0..2d795c4 100644
--- a/src/components/layout/AppDrawer.vue
+++ b/src/components/layout/AppDrawer.vue
@@ -49,10 +49,7 @@ nextTick(() => {
-