本文實例講述了Vue實現(xiàn)的父組件向子組件傳值功能。分享給大家供大家參考,具體如下:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vue 父組件向子組件傳值</title>
<script src="https://cdn.bootcss.com/vue/2.2.2/vue.min.js"></script>
</head>
<body>
<div id="app">
<!-- 把字符串傳給子組件 -->
<ol>
<todo-item v-for="item in sites" v-bind:item="item"></todo-item>
</ol>
<!-- 把數(shù)組的值傳給子組件 -->
<myname :name="name"></myname>
</div>
<script>
Vue.component('todo-item', {
// props: ['item'],
props: {
item : String,
},
template: '<li>{{ item.text }}</li>'
})
Vue.component('myname', {
props: ['name'],
// props: {
// name : Array,
// },
template: '<div><li v-for="(item,index) in name">{{ item.text }}-{{index+1}}</li></div>'
//需要有一個根元素標(biāo)簽包含子組件循環(huán),vue react都要把東西變成一個塊才能循環(huán)出來
})
new Vue({
el: '#app',
data: {
sites: [
{ text: 'jb51' },
{ text: 'Google' },
{ text: 'Taobao' }
],
name: [
{ text: 'lee' },
{ text: 'jane' },
{ text: 'nike' }
]
}
})
</script>
</body>
</html>
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
當(dāng)前標(biāo)題:Vue實現(xiàn)的父組件向子組件傳值功能示例-創(chuàng)新互聯(lián)
網(wǎng)址分享:http://chinadenli.net/article36/ccgspg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站維護、網(wǎng)站內(nèi)鏈、App設(shè)計、小程序開發(fā)、ChatGPT、動態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)