iviewテーブルの余分な単語は...省略されています

 {
              title: '客诉内容',
              width:350,
              align: 'center',
              key: 'content',
              render: (h, params) => {
                                      return h('div', [
                                          h('span', {
                                              style: {
                                                  display: 'inline-block',
                                                  width: '100%',
                                                  overflow: 'hidden',
                                                  textOverflow: 'ellipsis',
                                                  whiteSpace: 'nowrap'
                                              },
                                              domProps: {
                                                  title: params.row.content
                                              }
                                          }, params.row.content)
                                      ])
                                  }

            },
公開された34元の記事 ウォンの賞賛0 ビュー3634

おすすめ

転載: blog.csdn.net/qq_43469899/article/details/98604489