Skip to content

Commit 5c770fa

Browse files
ST-DDTwaynzh
authored andcommitted
docs: fix typos
1 parent 870b0c7 commit 5c770fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/rules/no-deprecated-slot-attribute.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,19 +89,19 @@ This rule reports deprecated `slot` attribute in Vue.js v2.6.0+.
8989

9090
```vue
9191
<template>
92-
<my-web-component'>
92+
<my-web-component>
9393
<!-- ✓ GOOD -->
9494
<template v-slot:name>
9595
{{ props.title }}
9696
</template>
97-
</my-web-component'>
97+
</my-web-component>
9898
99-
<my-web-component'>
99+
<my-web-component>
100100
<!-- ✓ GOOD -->
101101
<my-component slot="name">
102102
{{ props.title }}
103103
</my-component>
104-
</my-web-component'>
104+
</my-web-component>
105105
106106
<other-component>
107107
<!-- ✗ BAD -->

0 commit comments

Comments
 (0)