Use self-closing slot tags everywhere (#7717)

This commit is contained in:
Nicola Krumschmidt
2021-08-31 15:10:55 +02:00
committed by GitHub
parent 4bde1d7455
commit 353e4f06c7
4 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@
<span v-else>{{ value }}</span>
</span>
<slot></slot>
<slot />
</div>
</template>

View File

@@ -1,6 +1,6 @@
<template>
<div class="v-list-item-content">
<slot></slot>
<slot />
</div>
</template>

View File

@@ -1,6 +1,6 @@
<template>
<div class="v-list-item-icon" :class="{ center }">
<slot></slot>
<slot />
</div>
</template>

View File

@@ -18,7 +18,7 @@
transform="translate(2.5 2.5)"
/>
</svg>
<slot></slot>
<slot />
</div>
</template>