Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <template>
  2. <div id="app">
  3. <button>Click Me</button>
  4. </div>
  5. </template>
  6.  
  7. <script>
  8. export default {
  9. name: "App",
  10.  
  11. };
  12. </script>
  13.  
  14. <style>
  15. #app {
  16. font-family: "Avenir", Helvetica, Arial, sans-serif;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. text-align: center;
  20. color: #2c3e50;
  21. margin-top: 60px;
  22. }
  23.  
  24. button{
  25. padding: 1em;
  26. margin: 1em;
  27. border-radius: 8px;
  28. background: none;
  29. font-weight: bold;
  30. font-size: 1.5em;
  31. }
  32. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement