Closed Ekion-1 closed 5 years ago
Solved this. I was using slots wrong. The following works:
<loading :active="loading"
:can-cancel="false"
:is-full-page="true"
color="#ffd04b">
<template v-slot:before>
Loading...
</template>
</loading>
I'm trying to add some text above the spinner using the
before
slot. The text is showing but the spinner has disappeared!