Bootstrap

工作中遇到的技术问题

antd-vue 表头实现换行显示?
<a-table :columns="[
    {
        title: () => (
            <div style="white-space: normal">
                第一行文本
                <br />
                第二行文本
            </div>
        ),
        dataIndex: 'columnName',
        key: 'columnName',
    }
]">
</a-table>
字符串如何删除最后一个元素?
1、
var str = 'this is a words';
str = str.slice(0, str.length -1);
console.log(str);

2、
var str = 'this is second ways';
str = str.substring(0, str.length - 1); // you can use substr replace substring
console.log(str);

3、use array
var str = 'this is third ways';
var strArr = str.split('');
strArr.pop();
str = strArr.join('');
console.log(str);


;