I want to toggle the colors of the selection button onclick between ‘black’ and ‘primary’
<template v-slot:activator="{ props }">
<v-btn color="black" v-bind="props"> SELECTION </v-btn>
</template>
I’m facing syntax issue in binding color to v-bind. How can the toggling of colors be achieved?