2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-13 08:32:26 +03:00
Files
vue-select/docs/.vuepress/components/SlotSpinner.vue
T
2021-08-01 12:30:50 -07:00

14 lines
321 B
Vue

<template>
<v-select :loading="true">
<template #spinner="{ loading }">
<div
v-if="loading"
style="border-left-color: rgba(88, 151, 251, 0.71)"
class="vs__spinner"
>
The .vs__spinner class will hide the text for me.
</div>
</template>
</v-select>
</template>