Я написал следующий код:
<template v-slot="scope">
<div :class="getFuncationBarClass(scope)" :style="'{ --progress: `${getFunctionPercentage(scope)}` }'">{{getFuncationTotals(scope)}}</div>
</template>
По какой-то причине вызываются getFuncationBarClass
и getFuncationTotals
, но getFunctionPercentage
не вызывается. Я пробовал другие варианты :style
, но все они не работали. Как я могу вызвать метод из привязки стиля?