样式重置
单vue文件中重置 | 全局重置 |
---|---|
多写一个style不加scrop,可能会影响全局样式 | 待补充 |
table
单价 | 数量 | 小计 |
---|---|---|
325 | 2 | ? |
在ElementUI中,我需要获取row内的数据并进行计算,需要用到v-slot
<el-table-column label="小计">
<template v-slot="scope">{{scope.row.price*scope.row.count}}</template>
</el-table-column>