pageClass | sidebarDepth | title | description |
---|---|---|---|
rule-details |
0 |
vue/restricted-component-names |
enforce using only specific component names |
enforce using only specific component names
- ❗ This rule has not been released yet.
This rule enforces consistency in component names.
<template>
<!-- ✓ GOOD -->
<button/>
<keep-alive></keep-alive>
<!-- ✗ BAD -->
<custom-component />
</template>
{
"vue/restricted-component-names": ["error", {
"allow": []
}]
}
<template>
<!-- ✓ GOOD -->
<custom-component />
<!-- ✗ BAD -->
<my-component />
</template>