123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <title></title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <script src="https://unpkg.com/vue/dist/vue.js"></script>
- <link href="../css/style.css" rel="stylesheet"> </head>
- <body>
- <div id="myApp">
- <a v-link="'/about'" target="_blank">About</a>
- <router-link to="/about">About</router-link>
- <div>
- <li v-link-active>
- <a v-link="'/about'">About</a>
- </li>
- </div>
- </div>
- <script>
- Vue.component('say-hello', {
- props: ['pname'],
- template: '<div>你好,<strong>{{pname}}</strong>!</div>',
- });
- var myApp = new Vue({
- el: '#myApp',
- data: {
- myname: 'Koma'
- }
- });
- </script>
- </body>
- </html>
|