You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes extension improperly finds or does not find regex in the Single-File Components (.vue files) inside the <template></template> tags.
Code from the screenshot
<template>
<div>
True negatives: cases, when there is no regex and extension doesn't find any
<div></div> / test
<div></div> /test
<br/> / test
<br /> /test
// test /
</div>
<div>
True positives: cases, when there is regex and extension finds them
{{/test/}}
{{ /test/ }}
</div>
<div>
False positives: cases, when there is no regex, but extension finds them
<br /> / test
/ test /
</div>
<div>
False negatives: cases, where there is regex, but extension doesn't find them
<button @click="/test/"></button>
</div>
</template>
The text was updated successfully, but these errors were encountered:
Sometimes extension improperly finds or does not find regex in the Single-File Components (
.vue
files) inside the<template></template>
tags.Code from the screenshot
The text was updated successfully, but these errors were encountered: