Guest User

Untitled

a guest
Apr 26th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <template>
  2. <div class="container">
  3. <div class="row">
  4. <div class="col-xs-12">
  5. <br>
  6. <button
  7. class="btn btn-primary"
  8. @click="selectedComponent = 'appBlue'">Load Blue Template</button>
  9. <button
  10. class="btn btn-success"
  11. @click="selectedComponent = 'appGreen'">Load Green Template</button>
  12. <button
  13. class="btn btn-danger"
  14. @click="selectedComponent = 'appRed'">Load Red Template</button>
  15. <hr>
  16. <component :is="selectedComponent">
  17. <h2 slot="title">Awesome title!</h2>
  18. <p>And this is awesome text!</p>
  19. </component>
  20. </div>
  21. </div>
  22. </div>
  23. </template>
  24.  
  25. <script>
  26. import Blue from './components/Blue.vue';
  27. import Green from './components/Green.vue';
  28. import Red from './components/Red.vue';
  29.  
  30. export default {
  31. components: {
  32. appBlue: Blue,
  33. appGreen: Green,
  34. appRed: Red
  35. },
  36. data() {
  37. return {
  38. selectedComponent: 'appBlue'
  39. };
  40. }
  41. };
  42. </script>
  43.  
  44. <style>
  45. </style>
Add Comment
Please, Sign In to add comment