<el-table :data="tableData" height="80%" width="100%" border stripe="stripe"> <el-table-column prop="orderid" label="订单号" width="100px" sortable> </el-table-column> <el-table-column prop="username" label="用户名" width="150px" sortable> </el-table-column> <el-table-column prop="nickname" label="昵称" width="150px" sortable> </el-table-column> <el-table-column prop="componname" label="商品名称" width="150px" sortable> </el-table-column> <el-table-column prop="tel" label="电话" width="130px" sortable> </el-table-column> <el-table-column prop="address" label="地址" width="200px" sortable> </el-table-column> <el-table-column prop="number" label="数量" width="80px" sortable> </el-table-column> <el-table-column prop="createtime" label="创建时间" width="200px" sortable> </el-table-column> <el-table-column prop="stateview" label="状态" width="120px" sortable> </el-table-column>
时间: 2024-04-01 11:37:12 浏览: 134
Perfect-Stripe:服务器端Swift 3 Stripe API
这段代码是Vue.js代码,用于创建一个表格。表格包括多个列,每个列都有一个prop属性用于指定数据源中对应的字段名,一个label属性用于指定列的名称,一个width属性用于指定列的宽度以及一个sortable属性用于指定是否启用排序功能。其中的数据源是通过tableData属性传入的一个数组,包含多个对象,每个对象对应表格中的一行数据,对象的属性名对应列的prop属性值。
阅读全文