Header.vue 424 B

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