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.
1 parent ff0c627 commit c5bcf10Copy full SHA for c5bcf10
docs/rules/no-deprecated-slot-attribute.md
@@ -89,19 +89,19 @@ This rule reports deprecated `slot` attribute in Vue.js v2.6.0+.
89
90
```vue
91
<template>
92
- <my-web-component'>
+ <my-web-component>
93
<!-- ✓ GOOD -->
94
<template v-slot:name>
95
{{ props.title }}
96
</template>
97
- </my-web-component'>
+ </my-web-component>
98
99
100
101
<my-component slot="name">
102
103
</my-component>
104
105
106
<other-component>
107
<!-- ✗ BAD -->
0 commit comments