标签.html 754 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <title></title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <script src="https://unpkg.com/vue/dist/vue.js"></script>
  8. <link href="../css/style.css" rel="stylesheet"> </head>
  9. <body>
  10. <div id="myApp">
  11. <a v-link="'/about'" target="_blank">About</a>
  12. <router-link to="/about">About</router-link>
  13. <div>
  14. <li v-link-active>
  15. <a v-link="'/about'">About</a>
  16. </li>
  17. </div>
  18. </div>
  19. <script>
  20. Vue.component('say-hello', {
  21. props: ['pname'],
  22. template: '<div>你好,<strong>{{pname}}</strong>!</div>',
  23. });
  24. var myApp = new Vue({
  25. el: '#myApp',
  26. data: {
  27. myname: 'Koma'
  28. }
  29. });
  30. </script>
  31. </body>
  32. </html>