vue中的代码缩写格式解释

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中的代码缩写格式解释)