iview的table中点击Icon弹Poptip,render函数的写法

Posted ivan5277

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iview的table中点击Icon弹Poptip,render函数的写法相关的知识,希望对你有一定的参考价值。

render: (h, params) => {
              return h(‘div‘, [
                          h(‘div‘, [
                              h(‘Poptip‘, {
                                  props: {
                                    confirm: true,
                                    transfer: true,
                                    placement: ‘left-start‘,
                                    title: ‘确定要删除吗!‘,
                                    type: ‘error‘,
                                    size: ‘small‘,
                                    width: ‘300‘,
                                    vModel: true
                                  },
                                  on: {
                                      ‘on-ok‘: ()=>{
                                          this.$Message.info(‘点击了确定‘)
                                      },
                                      ‘on-cancel‘: ()=>{
                                          this.$Message.info(‘点击了取消‘)
                                      }
                                  }
                              }, [
                                h(‘Icon‘,{
                                    props: {
                                      type: ios-gear‘,
                                      size:18
                                    }
                                })
                              ])
                          ]),
                      ]);
                  }

 

以上是关于iview的table中点击Icon弹Poptip,render函数的写法的主要内容,如果未能解决你的问题,请参考以下文章

iview table内渲染proptip组件

iview的poptip插件,自动换行与自定义content的内容

iview 带Icon的输入框点击事件

iview上的兼容性问题

iView中表格(Table)添加点击行展开扩展说明的功能

iview的table:自定义table表格中列头的标题和点击事件(renderHeader)