标签:image border put 生效 ase audio mamicode inf inline
父组件:
DOM部分
<el-table-column prop="img" :label="label" width="180">
<template slot-scope="scope">
<div class="img-wrap">
<img v-lazy="scope.row.album.picUrl" />
<PlayIcon :style="out-style" :inner-size="size"></PlayIcon>
</div>
</template>
</el-table-column>
script部分:
import PlayIcon from ‘@/base/playIcon‘; //引入子组件 export default { props: [‘data‘], components: { PlayIcon }, data() { return { label: ‘‘, tableData: [], outStyle: { width: ‘24px‘, height: ‘24px‘ }, innerSize: { fontSize: ‘14px‘ } }; }, computed: {} };
子组件:
标签:image border put 生效 ase audio mamicode inf inline
原文地址:https://www.cnblogs.com/hahahakc/p/13151626.html