Vueの初心者です。行をクリックするとグラフが展開されてグラフが表示されるデータテーブルを作成しようとしています。あなたが私を助けることができるなら、これで私は2つの問題を抱えています。行をクリックすると何も表示されませんが、別のグラフをクリックするとグラフが最初に表示されます。 2つ目は、一度に1つの行しか開いていないことです。Vueを使用して行を展開すると、要素を直接表示する方法
ありがとうございます!
<div class="right-side-table">
<el-table :data="" style="width: 100%; max-height: 100%" element-loading-text="" highlight-current-row empty-text="N/A" @expand="handleRowExpansion">
<el-table-column type="expand">
<template scope="props">
<p>#: {{ props.row.dateUTC }}</p>
<p>#: {{ props.row.creator }}</p>
<p>#: {{props.row.type }}</p>
<p>#: {{ props.row.labels }}</p>
<p>#: {{ props.row.uid }}</p>
<canvas id="myChart4" width="300" height="300"></canvas>
<canvas id="myChart6" width="300" height="300"></canvas>
<canvas id="myChart5" width="300" height="300"></canvas>
<div>
<el-button type="primary" @click="">Review</el-button>
</div>
</template>
</el-table-column>
<el-table-column prop="name" label="Name" sortable show-overflow-tooltip></el-table-column>
<el-table-column prop="" label="" sortable show-overflow-tooltip></el-table-column>
<el-table-column prop="" label="" sortable show-overflow-tooltip></el-table-column>
<el-table-column prop="" label="" sortable show-overflow-tooltip></el-table-column>
<el-table-column prop="" label="" sortable show-overflow-tooltip></el-table-column>
</el-table>
</div>
あなたのJSも表示します... – Ju66ernaut