指令學(xué)習(xí):
v-cloak 可以解決插值顯示閃爍的問(wèn)題芜壁。
v-text 內(nèi)容賦值垃喊。
v-html 把內(nèi)容當(dāng)html渲染臼隔。
v-bind 用于綁定屬性的指令【可以簡(jiǎn)寫為:】萎坷。(當(dāng)表達(dá)式解析瓮下,可以做拼接)
v-on 綁定事件【可以簡(jiǎn)寫為@】
v-cloak解決閃爍:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
[v-cloak]{
display: none;
}
</style>
</head>
<body>
<div id="app">
<p v-cloak>{{message}}</p>
</div>
<script type="text/javascript" src="./lib/vue-2.6.10.js"></script>
<script>
var vm = new Vue({
el: '#app',
data:{
message: 'vue的學(xué)習(xí)'
}
})
</script>
</body>
</html>
示例代碼:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div id="app">
<p>{{message}}</p>
<p v-text="message2"></p>
<p v-html="message3"></p>
<button type="button" v-bind:title="titleContent">按鈕</button>
<button type="button" :title="titleContent + '12345'">按鈕</button>
<input type="button" value="按鈕" v-on:click="alert('hello')"/>
<input type="button" value="按鈕" v-on:click="alertInfo"/>
<input type="button" value="按鈕" @click="alertInfo"/>
</div>
<script type="text/javascript" src="./lib/vue-2.6.10.js"></script>
<script>
var vm = new Vue({
el: '#app',
data:{
message: 'vue的學(xué)習(xí)',
message2: 'vue的學(xué)習(xí)2',
message3: '<h1>vue的學(xué)習(xí)3</h1>',
titleContent:'綁定屬性的指令'
},
methods:{
alertInfo: function(){
alert("hello");
}
}
})
</script>
</body>
</html>