vuejs / vetur

Vue tooling for VS Code.
https://vuejs.github.io/vetur/
MIT License
5.75k stars 594 forks source link

[Bug] broken slot highlighting #2614

Open wenfangdu opened 3 years ago

wenfangdu commented 3 years ago

Info

Problem

Broken highlighting: image Normal highlighting: image

Reproducible Case

<template>
  <custom-component>
    <template #cell(_index)="{ index }">
      {{ index + 1 }}
    </template>
  </custom-component>
</template>
yoyo930021 commented 3 years ago

Does slot allow ( or ) chars?

wenfangdu commented 3 years ago

@yoyo930021 Yes, the syntax is from https://bootstrap-vue.org/docs/components/table#scoped-field-slots.