I encountered an error message while using VS Code:
[vue/no-deprecated-slot-attribute]
`slot` attributes are now considered deprecated. eslint-plugin-vue
https://i.sstatic.net/DUMLN.png
After installing two plugins in .eslintrc.js
, I have the following configurations:
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended'
],
Additionally, my rules include:
'vue/no-deprecated-slot-attribute': 'off',
What steps should be taken to resolve this issue?