Reputation: 82152
I rather new to Vue, and cannot figure out exactly what the hash symbol #
(i.e. #item.active
) means in Vue.
As the hash symbol is a difficult term to search on the web!
<template #item.active="{ value }">
<div :aria-label="String(value)" class="text-center">
<v-icon v-if="value === null">mdi-minus</v-icon>
<v-icon v-else color="red">mdi-close</v-icon>
</div>
</template>
Thank you in advance for any help!
Upvotes: 28
Views: 9256