bayrell / BayLang

BayLang compiler source code
https://bayrell.org/ru/docs/baylang
Apache License 2.0
4 stars 0 forks source link

Код вложенный в компонент не работает #138

Open ildar-ceo opened 8 months ago

ildar-ceo commented 8 months ago

Происходит это потому что переменная form_component вне функции рендера контента самого содержимого компонента.

%set string dialog_component = this.model.dialog.component;
%set string form_component = this.model.form.component;
<{dialog_component} @model={{ this.model.dialog }}>
    <{form_component} @model={{ this.model.form }} />
</{dialog_component}>