We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
data-
1 parent 32c3f28 commit c23b332Copy full SHA for c23b332
1 file changed
packages/language-service/lib/plugins/vue-sfc.ts
@@ -215,7 +215,11 @@ export function create(): LanguageServicePlugin {
215
if (!result) {
216
return;
217
}
218
- result.items = result.items.filter(item => item.label !== '!DOCTYPE' && item.label !== 'Custom Blocks');
+ result.items = result.items.filter(item =>
219
+ item.label !== '!DOCTYPE' &&
220
+ item.label !== 'Custom Blocks' &&
221
+ item.label !== 'data-'
222
+ );
223
224
const tags = sfcDataProvider?.provideTags();
225
0 commit comments