# Priority A Rules: Essential {#priority-a-rules-essential} These rules help prevent errors, so learn and abide by them at all costs. Exceptions may exist, but should be very rare and only be made by those with expert knowledge of both JavaScript and Vue. ## Use multi-word component names {#use-multi-word-component-names} User component names should always be multi-word, except for root `App` components. This [prevents conflicts](https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name) with existing and future HTML elements, since all HTML elements are a single word.

Bad

```vue-html ```

Good

```vue-html ```
## Use detailed prop definitions {#use-detailed-prop-definitions} In committed code, prop definitions should always be as detailed as possible, specifying at least type(s). ::: details Detailed Explanation Detailed [prop definitions](/guide/components/props#prop-validation) have two advantages: - They document the API of the component, so that it's easy to see how the component is meant to be used. - In development, Vue will warn you if a component is ever provided incorrectly formatted props, helping you catch potential sources of error. :::

Bad

```js // This is only OK when prototyping props: ['status'] ```

Good

```js props: { status: String } ``` ```js // Even better! props: { status: { type: String, required: true, validator: value => { return [ 'syncing', 'synced', 'version-conflict', 'error' ].includes(value) } } } ```

Bad

```js // This is only OK when prototyping const props = defineProps(['status']) ```

Good

```js const props = defineProps({ status: String }) ``` ```js // Even better! const props = defineProps({ status: { type: String, required: true, validator: (value) => { return ['syncing', 'synced', 'version-conflict', 'error'].includes( value ) } } }) ```
## Use keyed `v-for` {#use-keyed-v-for} `key` with `v-for` is _always_ required on components, in order to maintain internal component state down the subtree. Even for elements though, it's a good practice to maintain predictable behavior, such as [object constancy](https://bost.ocks.org/mike/constancy/) in animations. ::: details Detailed Explanation Let's say you have a list of todos:
```js data() { return { todos: [ { id: 1, text: 'Learn to use v-for' }, { id: 2, text: 'Learn to use key' } ] } } ```
```js const todos = ref([ { id: 1, text: 'Learn to use v-for' }, { id: 2, text: 'Learn to use key' } ]) ```
Then you sort them alphabetically. When updating the DOM, Vue will optimize rendering to perform the cheapest DOM mutations possible. That might mean deleting the first todo element, then adding it again at the end of the list. The problem is, there are cases where it's important not to delete elements that will remain in the DOM. For example, you may want to use `` to animate list sorting, or maintain focus if the rendered element is an ``. In these cases, adding a unique key for each item (e.g. `:key="todo.id"`) will tell Vue how to behave more predictably. In our experience, it's better to _always_ add a unique key, so that you and your team simply never have to worry about these edge cases. Then in the rare, performance-critical scenarios where object constancy isn't necessary, you can make a conscious exception. :::

Bad

```vue-html ```

Good

```vue-html ```
## Avoid `v-if` with `v-for` {#avoid-v-if-with-v-for} **Never use `v-if` on the same element as `v-for`.** There are two common cases where this can be tempting: - To filter items in a list (e.g. `v-for="user in users" v-if="user.isActive"`). In these cases, replace `users` with a new computed property that returns your filtered list (e.g. `activeUsers`). - To avoid rendering a list if it should be hidden (e.g. `v-for="user in users" v-if="shouldShowUsers"`). In these cases, move the `v-if` to a container element (e.g. `ul`, `ol`). ::: details Detailed Explanation When Vue processes directives, `v-if` has a higher priority than `v-for`, so that this template: ```vue-html ``` Will throw an error, because the `v-if` directive will be evaluated first and the iteration variable `user` does not exist at this moment. This could be fixed by iterating over a computed property instead, like this:
```js computed: { activeUsers() { return this.users.filter(user => user.isActive) } } ```
```js const activeUsers = computed(() => { return users.filter((user) => user.isActive) }) ```
```vue-html ``` Alternatively, we can use a `