vue render的基础用法

2019-05-27  本文已影响0人  798b6b7c244d

下面是一段在表格表头里面添加icon 的代码

renderHeader: (h,params)=>{
            return h('div',[
                  h('strong','调用时间'),
                  h('Icon',{
                      props:{
                          type: 'md-arrow-round-up'   //icon 的type
                      },
                      style: {                //样式
                          marginLeft: '5px',
                          cursor: 'pointer',
                      },
                      on: {        //事件
                        click: () => {
                          this.order = 2
                          this.show()
                        }
                      }
                  }),
                  h('Icon',{
                      props:{
                          type: 'md-arrow-round-down'
                      },
                      style: {
                          marginLeft: '5px',
                          cursor: 'pointer',
                      },
                      on: {
                        click: () => {
                          this.order = 1
                          this.show()
                        }
                      }
                  }),
              ])
          }
image.png qinqin.gif
上一篇下一篇

猜你喜欢

热点阅读