一.計(jì)算屬性(computed)

<template>
<div class="box">
<h2>計(jì)算屬性</h2>
<hr>
<!-- 直接渲染得到數(shù)據(jù) -->
<p><input type="text" v-model="message"></p>
<!-- 對(duì)data的數(shù)據(jù)進(jìn)行簡(jiǎn)單的操作
這樣有一個(gè)不好的地方就是后期對(duì)頁面數(shù)據(jù)的維護(hù)不是那么方便 -->
<p>{{message.toUpperCase()}}</p>
<!-- 通過計(jì)算屬性改變mesage進(jìn)行渲染 -->
<p>{{computedMessage}}</p>
<hr>
<!-- 通過事件來改變屬性 -->
<span>{{message}}</span><button @click="changeMessage()">點(diǎn)擊改變</button>
<hr>
</div>
</template>
<script>
export default {
data() {
return {
message: 'Hello world!',
passw2: 'sss',
}
},
// computed屬性是return返回值,在使用的時(shí)候只使用函數(shù)名不是調(diào)用函數(shù)
computed:{
computedMessage(){
return this.message.split('')
}
},
methods:{
changeMessage(){
this.message = this.computedMessage+'altman'
}
},
}
</script>
文章題目:vue計(jì)算屬性computed、事件、監(jiān)聽器watch的使用講解-創(chuàng)新互聯(lián)
標(biāo)題網(wǎng)址:http://www.chinadenli.net/article6/deeoig.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、建站公司、品牌網(wǎng)站建設(shè)、品牌網(wǎng)站制作、自適應(yīng)網(wǎng)站、移動(dòng)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容