Commit ac02e496 authored by Natalia Tepluhina's avatar Natalia Tepluhina Committed by Phil Hughes

Added a note about v-slot directive

parent fe090797
...@@ -544,14 +544,24 @@ Please check this [rules][eslint-plugin-vue-rules] for more documentation. ...@@ -544,14 +544,24 @@ Please check this [rules][eslint-plugin-vue-rules] for more documentation.
<component @click="eventHandler"/> <component @click="eventHandler"/>
``` ```
1. Shorthand `:` is preferable over `v-bind` 2. Shorthand `:` is preferable over `v-bind`
```javascript ```javascript
// bad // bad
<component v-bind:class="btn"/> <component v-bind:class="btn"/>
// good // good
<component :class="btsn"/> <component :class="btn"/>
```
3. Shorthand `#` is preferable over `v-slot`
```javascript
// bad
<template v-slot:header></template>
// good
<template #header></template>
``` ```
#### Closing tags #### Closing tags
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment