I am getting following error in VS Code:
[vue/no-deprecated-slot-attribute]
`slot` attributes are deprecated. eslint-plugin-vue
I have these two plugin installed in .eslintrc.js
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended'
],
And this in rules:
'vue/no-deprecated-slot-attribute': 'off',
What should be done in order to avoid this issue?
