vue--render函数

2019-07-28  本文已影响0人  光头小青蛙
 data() {
    return {
      text: "2222"
    };
  },
  methods: {
    clickFn(){
      console.log("click")
    }
  },
  render(h) {
    return h("div", {
      style: { backgroundColor: "#ccc", width: "200px", height: "200px" },//设置标签的样式
      attrs: { id: "der", class: "ser" },//设置普通HTML的属性
      props: {myprop: "bar"},//设置组件的属性
      on:{//绑定事件
        click:this.clickFn
      },
      ref:"tools"//设置ref
    },[h("span",{})]);
  }
上一篇下一篇

猜你喜欢

热点阅读