Tabview problem

Hi, im trying to load two components in a multiview but when a the mutliview shows, just the first tab works, the other one doesn’t show

this my code
export default class Class extends JetView {
config() {

    let cells = [
        {
          header: "", body: view1
        },
        {
          header: "", body: view2
        }
      ];


    const tabView = {
        view: "tabview",
        cells: cells
      }


    return tabView;
}

}

in this snippet it works
https://snippet.webix.com/4wiesaei
probably you have problem in other part of code.
try to check your console output.

@integral Hi, I don’t have an error, The only error it was a bad request with fetch but I delete that and i still have the problem. Also I try to changing the order of the view putting in the first tab view2 and in the second view1 but I get the same, just the view2 is showing and the second tab doesn’t

@intregal Well if i put the code in the tab without exporting its ok, but when i export the full form and put the variable in the tab, i get that problem