// 筛选变色
brightenKeyword(val, keyword) { val = val + ''; if (val.indexOf(keyword) !== -1 && keyword !== '') { return val.replace(keyword, '<font color="#409EFF">' + keyword + '</font>') } else { return val } }
// 使用方法
<el-table-column label="维护内容"> <template slot-scope="scope"> <span v-html="brightenKeyword(scope.row.strContent, filters.strContent)" ></span> </template></el-table-column>
开源项目地址: https://github.com/alex-0407/vue2-admin-grace
效果演示
vue2-admin-grace.gif
作者:全栈弄潮儿
链接:https://www.jianshu.com/p/7e8ec4394480