shopInfo.vue 482 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div>
  3. 我是Hello World页
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'HelloWorld',
  9. data () {
  10. return {
  11. msg: 'Welcome to Your Vue.js App'
  12. }
  13. }
  14. }
  15. </script>
  16. <!-- Add "scoped" attribute to limit CSS to this component only -->
  17. <style scoped>
  18. h1, h2 {
  19. font-weight: normal;
  20. }
  21. ul {
  22. list-style-type: none;
  23. padding: 0;
  24. }
  25. li {
  26. display: inline-block;
  27. margin: 0 10px;
  28. }
  29. a {
  30. color: #42b983;
  31. }
  32. </style>