Template directive: btn

The @btn() directive is used for adding attributes to html submit buttons. It takes only one argument which is used to set the name and value attributes.
btn
Example: Btn
  <button @btn('logout')></button>
                
The sample above will resolve as:
  <button name="logout" value="logout"></button>
                
From the sample above, we can see that both the name and value were defined