123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!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>初识vue</title>
-
- <script type="text/javascript" src="../js/vue.js"></script>
- </head>
- <body>
-
-
- <div id="root">
- <h1>hello,{{name}},{{address}}</h1>
- </div>
- <script>
- Vue.config.productionTip = false
-
- new Vue({
- el:'#root',
-
-
- data:{
- name:'atguigu',
- address:'上海'
- }
- })
- </script>
-
- </body>
- </html>
|