源码:Github
script src
引入``vue相关
js`文件<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
body
中的div
里通过id
绑定``vue`对象<div id="app">
<!-- message output -->
<h1>{{message}}</h1>
</div>
js
代码里实现对象的绑定,初始化值、成员函数已经其他在生命周期里可能存在的钩子函数。<script>
var vm = new Vue({
el: "#app",
data: {
message: "hello Vue",
ok: true,
items: [{
value: "List item 1"
}, {
value: "List item 2"
}, {
value: "List item 3"
}],
username: "",
input2: "",
},
methods: {
clickButton: function() {
this.message = "button clicked ... ";
this.ok = false;
}
},
})
</script>
v-if、v-else-if、v-else
<!-- if else -->
<h2 v-if="ok===true">Yes</h2>
<h2 v-else>No</h2>
v-for
<!-- for loop -->
<ol v-for="(item, index) in items" :key="index">
<li>{{index}}--{{item.value}}</li>
</ol>
v-on:eventType
<button v-on:click="clickButton()">Click me</button>
v-model
在v-model.lazy
情况下,更改了输入框内容后不会即时更新,而是在输入框失去焦点后更新。
<!-- v-model bind -->
<div>
<span>input value:</span>
<input type="text" v-model="username"><br>
<!-- <input type="text" v-model.lazy="username"><br> -->
<span> value is:</span>
<label>{{username}}</label>
</div>
后端狗的Vue学习历程(一) - demo示例与基本逻辑语法
原文:https://www.cnblogs.com/lunarche/p/13965752.html