关于vue中的:data和scope.row

这篇博客探讨了在Vue项目中遇到的问题,主要关注`:data`属性和`slot-scope`的用法,尤其是如何利用`scope.row`来访问表格数据。作者通过实例解释了这三个概念在实际开发中的应用。
摘要由CSDN通过智能技术生成

第一次项目遇到的问题

一、关于vue的几个疑惑

<el-table :data="fromList" stripe style="width: 100%">
      <el-table-column prop="username" label="姓名" width="180"></el-table-column>
      <el-table-column prop="password" label="密码" width="180"> </el-table-column>
      <el-table-column label="适用性别" align="center">
      	<template slot-scope="scope">
        	<span>{{ scope.row.sex == '0' ? '不限' : scope.row.sex == '1' ? '男' : '女'}}</span>
      	</template>
      </el-table-column>
	  <el-table-column label="操作" align="center">
	  	<template slot-scope="scope">
			<el-button type="primary" size="mini" @click="handleUpdate(scope.row)">编辑			</el-button>
			<el-button size="mini" type="danger" @click="handleDelete(scope.row)">删除</el-button>
		</template>
</el-table>

1、:data=“userList”

前面有:冒号,说明后面跟着是变量或者表达式,没有冒号代表后面的字符串
data:绑定表单的数据数组,里面存放每一个数据对象

2、slot-scope=“scope”

作用域插槽(待补充,)

3、scope.row

scope.row表示那行数据对象
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值