name = $name; $this->field = $field; $this->has = $has; } /** * @return array */ public function render(): array { $data = [ 'nodeName' => 'app-editor' ]; if ($this->model) { $data['vModel:value'] = $this->getModelField(); } return $data; } }