Guest User

Untitled

a guest
Sep 24th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <template>
  2. <div class="hero">
  3. {{title}}
  4. </div>
  5. </template>
  6.  
  7. <script>
  8. export default {
  9. name: 'BaseHero',
  10. data() {
  11. return {
  12. title: 'Hello Word',
  13. };
  14. },
  15. };
  16. </script>
  17.  
  18. <style>
  19. .hero {
  20. font-size: 30px;
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. height: 100vh;
  25. }
  26. </style>
Add Comment
Please, Sign In to add comment