HelloWorld.vue 390 B

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