修复投影机只显示一行的bug

This commit is contained in:
shefengchun 2023-03-02 14:30:46 +08:00
parent 33e76ee393
commit e5a142fad4
1 changed files with 2 additions and 2 deletions

View File

@ -40,8 +40,8 @@
@click="currently_selected_projector(index_row + '-' + index_col)"></projector-item>
</div> -->
<div v-for="(item, index_row) in 1">
<projector-item v-for="(item, index_col) in projectors_that_can_display.col" class="w-100" :llabel="
<div v-for="(item, index_row) in config.row">
<projector-item v-for="(item, index_col) in config.col" class="w-100" :llabel="
$t('Projector') + (index_row * config.col + index_col + 1)
" :lvalue="index_row + '/' + index_col"
@click="currently_selected_projector(index_row + '-' + index_col)"></projector-item>