HelloWorld.vue 421 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <div class="hello">
  3. <h1>{{ msg }}</h1>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'HelloWorld',
  9. props: {
  10. msg: String
  11. }
  12. }
  13. </script>
  14. <!-- Add "scoped" attribute to limit CSS to this component only -->
  15. <style scoped lang="scss">
  16. h3 {
  17. margin: 42px 0 0;
  18. }
  19. ul {
  20. list-style-type: none;
  21. padding: 0;
  22. }
  23. li {
  24. display: inline-block;
  25. margin: 0 10px;
  26. }
  27. a {
  28. color: #42b983;
  29. }
  30. </style>