<template>
<div>
<table class="table">
<thead>
<tr>
<th>序号</th>
<th>商品名称</th>
<th>商品分类</th>
<th>销售数量</th>
<th>商品价格</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr v-for="(item, index) in stu" :key="index">
<td>
<div>{
{ index + 1 }}</div>
</td>
<td>
<div v-if="!item.isChange">{
{ item.name }}</div>
<div v-else>
<a-input v-model:value="item.name"/>
</div>
</td>
<td>
<
vue3:自定义可编辑表格
最新推荐文章于 2025-05-15 08:33:00 发布