<template slot-scope="scope">
<el-button size="small" icon="el-icon-download" type="text" plain circle v-show="!scope.row.rename && scope.row.isFile" @click.stop="onDownload(scope.row)"></el-button>
<el-button size="small" icon="el-icon-delete" type="text" plain circle v-show="!scope.row.rename" @click.stop="onDelete(scope.row)"></el-button>
+ <a :href="sanitize(path + '/' + scope.row.filePath)" target="_blank">
+ <el-button size="small" icon="el-icon-link" style="margin: 10px;">Link</el-button>
+ </a>
</template>
</el-table-column>
</el-table>