1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script src="http://static.runoob.com/assets/vue/1.0.11/vue.min.js"></script>
- </head>
- <body>
- <div id="root">
- <h1>hello {{name}}</h1>
- <h2>{{school.class}}</h2>
- <h3>{{age[0]}}</h3>
-
- </div>
- <script type="text/javascript">
- const vue = new Vue({
- el:'#root',
- data:{
- name:'zhangsan',
- school:{
- class:'163',
- grade:'123'
- },
- age:['12','15']
- }
- });
-
- </script>
- </body>
- </html>
|