Hello Vuejs
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vuejs</title>
<script src="js/vue.js"></script>
</head>
<body>
<div id="app">{{message}}
<h2>{{name}}</h2>
</div>
<script>
const app = new Vue({
el: "#app",
data: {
message: "你好啊~",
name: '苦涩'
}
})
</script>
</body>
</html>
小案例:计数器
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vuejs</title>
<script src="js/vue.js"></script>
</head>
<body>
<div id="app">
<h2>当前计数:{{counter}}</h2>
<button v-on:click='add'>+</button>
<button @click='sub'>-</button>
</div>
<script>
const app = new Vue({
el: '#app',
data: {
counter: 0,
},
methods: {
add: function(){
this.counter++;
},
sub: function(){
this.counter--;
}
}
})
</script>
</body>
</html>