美文网首页
vue中的代码缩写格式解释

vue中的代码缩写格式解释

作者: 浩3108 | 来源:发表于2017-10-26 11:26 被阅读24次
render: h => h(App)
// ES5  
(function (h) {  
  return h(App);  
});  
  
// ES6  
h => h(App); 

// JS
render: function (createElement) {
    return createElement(
      'h' + this.level,   // tag name 标签名称
      this.$slots.default // 子组件中的阵列
    )
}

相关文章

网友评论

      本文标题:vue中的代码缩写格式解释

      本文链接:https://www.haomeiwen.com/subject/pdbhpxtx.html