Vue插槽---Element-ui 中的使用

<el-table :data="rightsList" border stripe>
          <el-table-column type="index" label="#"></el-table-column>
          <el-table-column label="权限名称" prop="authName"></el-table-column>
          <el-table-column label="路径" prop="path"></el-table-column>
          <el-table-column label="权限等级" prop="level">
              <template slot-scope="scope">
                  <el-tag v-if="scope.row.level==='0'">一级</el-tag>
                  <el-tag type="success" v-else-if="scope.row.level==='1'">二级</el-tag>
                  <el-tag type="warning" v-else-if="scope.row.level==='2'">三级</el-tag>
              </template>
          </el-table-column>
        </el-table>

slot-scope=“scope” 定义插槽 scope值为 el-table绑定的data值 scope可自定义名称

你可能感兴趣的:(vue)