Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7071875 commit e9c2a1fCopy full SHA for e9c2a1f
.project
@@ -0,0 +1,11 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<projectDescription>
3
+ <name>vuejs-learn</name>
4
+ <comment></comment>
5
+ <projects>
6
+ </projects>
7
+ <buildSpec>
8
+ </buildSpec>
9
+ <natures>
10
+ </natures>
11
+</projectDescription>
qibu-1/demo-1-02.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="UTF-8">
+ <title>双向绑定</title>
+ <script src="../js/vue.js"></script>
+ </head>
+ <body>
+ <div id="app">
+ <p>{{message}}</p>
+ <input v-model="message" />
12
+ </div>
13
+ </body>
14
+ <script>
15
+ new Vue({
16
+ el:'#app',
17
+ data: {
18
+ message:'hello vue.js'
19
+ }
20
+ })
21
+ </script>
22
+</html>
0 commit comments