mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2024-11-09 01:49:14 +00:00
no need to covert to boolean
This commit is contained in:
parent
670cbfdd1c
commit
3b9ab0e343
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<button :disabled="progress || disabled" @click="onClick">
|
||||
<template v-if="progress && !!$slots.progress">
|
||||
<template v-if="progress && $slots.progress">
|
||||
<slot name="progress" />
|
||||
</template>
|
||||
<template v-else>
|
||||
|
|
Loading…
Reference in a new issue