Advertisement
MateusMelo500

Untitled

Oct 13th, 2020
1,996
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.53 KB | None | 0 0
  1. <template>
  2.   <div class="registerTable">
  3.     <h2>{{ form.name }}</h2>
  4.   </div>  
  5. </template>
  6.  
  7. <script>
  8. export default {
  9.   name: 'HelloWorld',
  10.   props: {
  11.     msg: String,
  12.     form: {}
  13.   },
  14.   data () {
  15.     return {
  16.       employee: 'Mateus Melo',
  17.     }
  18.   }
  19. }
  20. </script>
  21.  
  22. <!-- Add "scoped" attribute to limit CSS to this component only -->
  23. <style scoped>
  24. h3 {
  25.   margin: 40px 0 0;
  26. }
  27. ul {
  28.   list-style-type: none;
  29.   padding: 0;
  30. }
  31. li {
  32.   display: inline-block;
  33.   margin: 0 10px;
  34. }
  35. a {
  36.   color: #42b983;
  37. }
  38. </style>
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement