I'm struggling to understand how slot-scopes function. Can anyone provide some guidance on this seemingly straightforward issue?
<v-data-table>
<template slot="items" slot-scope="props">
<tr @click="props.expanded = !props.expanded">
My goal is to manually update "props" to expand this row based on an external event. However, I am having trouble accessing it outside of the specified context. The props.expanded = !props.expanded
line works perfectly fine.
Any suggestions or solutions for this problem?