为什么所有重组食谱在const { Component } = React;
不使用Component
时都以class Content extends Model {
public function tag() {
return $this->belongsTo('App\Tag');
}
}
class Tag extends Model {
public function contents() {
return $this->hasMany('App\Content', 'tag');
}
}
开头?
这样开始食谱有什么意义?
答案 0 :(得分:0)
这是因为在代码中使用了JSX。 JSX被转换为React.createElement,它显然使用了React。