Skip to content

Commit bd13174

Browse files
authored
Fix interactive docs for vue/match-component-import-name (#1862)
1 parent ba29114 commit bd13174

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/rules/match-component-import-name.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ since: v8.7.0
1313

1414
By default, this rule will validate that the imported name matches the name of the components object property identifer. Note that "matches" means that the imported name matches either the PascalCase or kebab-case version of the components object property identifer. If you would like to enforce that it must match only one of PascalCase or kebab-case, use this rule in conjunction with the rule [vue/component-definition-name-casing](./component-definition-name-casing.md).
1515

16-
<eslint-code-block :rules="{'vue/match-component-file-name': ['error']}">
16+
<eslint-code-block :rules="{'vue/match-component-import-name': ['error']}">
1717

1818
```vue
1919
<script>

0 commit comments

Comments
 (0)