'How hide and show DxTab item programmatically

Im using js DevExtreme for evaluation. I have a layout with dxtabbeditem with two tabs inside. I would to change the visibility of second tabs from my javascript code, this is my layout:

    <DxForm>
     <DxGroupItem>
      <DxTabbedItem>
        <DxTab
         :col-count="12"
         :title="First tab">    >
         <!-- first tab -->
        </DxTab>
        <DxTab
         :col-count="12"
         :title="Second tab">    
         <!-- second tab -->
        </DxTab>
      </DxTabbedItem>
    </DxGroupItem>
   </DxForm>

Can anyone help me? Thanks



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source