mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-13 08:32:26 +03:00
14 lines
321 B
Vue
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>
|