Guest User

Untitled

a guest
Feb 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <template v-if="type === 'login'">
  2. <label>Username</label>
  3. <input placeholder="Enter your username" key="username-input">
  4. </template>
  5.  
  6. <template v-if="type === 'subscribe'">
  7. <label>Email</label>
  8. <input placeholder="Enter your email address" key="email-input">
  9. </template>
  10.  
  11. <template type="login" />
  12.  
  13. <template type="subscribe" />
  14.  
  15. <template id="login">
  16. <label>Username</label>
  17. <input placeholder="Enter your username" key="username-input">
  18. </template>
  19.  
  20. <template id="subscribe">
  21. <label>Email</label>
  22. <input placeholder="Enter your email address" key="email-input">
  23. </template>
Add Comment
Please, Sign In to add comment