Update PreviewTable.vue

This commit is contained in:
xhacker-zzz 2021-12-22 13:47:20 +08:00 committed by GitHub
parent bd31514880
commit 1e4570abdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -11,16 +11,19 @@
</el-table-column>
<el-table-column label="歌曲">
<template #default="scope">
<el-input placeholder="请输入歌曲标题" v-model="iTitle" clearable></el-input>
<span>{{ scope.row.title }}</span>
</template>
</el-table-column>
<el-table-column label="歌手">
<template #default="scope">
<el-input placeholder="请输入歌手" v-model="iArtist" clearable></el-input>
<p>{{ scope.row.artist }}</p>
</template>
</el-table-column>
<el-table-column label="专辑">
<template #default="scope">
<el-input placeholder="请输入专辑名称" v-model="iAlbum" clearable></el-input>
<p>{{ scope.row.album }}</p>
</template>
</el-table-column>