Vue.js組件傳參案例

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script type="text/javascript" src="js/vue.min.js"></script>
</head>
<body>
<div id="app">
<ul>
<li>
<hello v-for="(item,index) in arr" v-bind:content="item" v-bind:txtindex="index"></hello>
</li>
</ul>
</div>
</body>
<script>
// vue 組件傳參數
Vue.component('hello', {
template:'<li>{{txtindex}}{{content}}<a href="">我是A</a></li>' ,
props: ['content','txtindex'],
})
var app = new Vue({
el: '#app',
data: {
arr:["打遊戲","學習vue","買菜"]
},

})
</script>
</html>




發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章