Vue中数据截取换行显示(v-html用法)

 
   
1.Vue表格内容数据显示
1  
2           
5   

2.编写一个方法按逗号分割内容,把逗号替换成
换行符号

1  methods: {
2     // 截取数据
3     cutout(cellValue) {
4       return cellValue.replace(/\,/g, '
') 5 } 6 }
数据库中存入的内容
变更到的房间号:555,原房间号:555,酒店入住单号:1111,客人姓名:xxx(字段 log_op_detail 里对应的内容)

3.效果图展示

Vue中数据截取换行显示(v-html用法)_第1张图片

 

转载于:https://www.cnblogs.com/Amant-meng/p/10510847.html

你可能感兴趣的:(Vue中数据截取换行显示(v-html用法))