ElementUI: el-table中动态绑定el-rate

阅读 52

2023-09-30


<el-table-column prop="yourProp" label="糟糕程度" width="160">
                <template v-slot:default="scope">
                  <p>
                    {{ scope.row.star }}
                  </p>
                  <el-rate
                  v-model="tableData[scope.$index].star"
                  :show-text="false"
                  allow-half>
                  </el-rate>

                </template>
              </el-table-column>
    <el-table-column


相关推荐

精彩评论(0)

0 0 举报