2.超过字符数限制使用省略号:设置过滤器filters: { ..._el table column 长度">
赞
踩
1.使用省略号:
- <el-table-column
- prop="url"
- label="说明书下载地址"
- width='200'
- :show-overflow-tooltip='true'>
-
- </el-table-column>
2.超过字符数限制使用省略号:
设置过滤器
- filters: {
- ellipsis(value) {
- if (!value) return "";
- if (value.length > 30) {
- return value.slice(0, 30) + "...";
- }
- return value;
- }
- },
对应template(使用过滤器):
- <el-table-column label="题干" width="600">
- <template slot-scope="scope">
- <span>{{scope.row.content | ellipsis}}</span>
- </template>
- </el-table-column>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。