This commit is contained in:
Code12121 2022-10-31 10:16:40 +08:00
parent 657076172f
commit 99eaa34809
3 changed files with 98 additions and 6 deletions

View File

@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app">
<apps @item="listitem"></apps>
</div>
<template id="apps">
<div>
<h1 v-for="item in list" @click="itemList(item)">{{item}}</h1>
</div>
</template>
</body>
<script src="../../../JavaScript/vue.js"></script>
<script>
new Vue({
el:"#app",
data:{
list:[]
},
methods:{
listitem(val){
this.list.push(val)
for (let i of this.list){
console.log(i);
}
}
},
components:{
'apps':{
template:"#apps",
data(){
return {
list:["电脑数码","电子设备","办公"]
}
},
methods: {
itemList(value){
this.$emit("item",value)
}
},
}
}
})
</script>
</html>

View File

@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app">
<apps :app="list"></apps>
</div>
<template id="apps">
<div>
<h1 v-for="item in app">{{item}}</h1>
</div>
</template>
</body>
<script src="../../../JavaScript/vue.js"></script>
<script>
const vue=new Vue({
el:"#app",
data:{
list:["这是图片1","这是图片2","这是图片3"]
},
components:{
'apps':{
template:"#apps",
props:{
'app':{
type:Array,
default(){
return []
}
}
}
}
}
})
</script>
</html>

View File

@ -38,9 +38,9 @@ js文件
项目:
prop属性的使用
Vue框架设计笔记笔记更新日期2022年10月24日18:49
时间2022年10月24日18:49:33
7、2022/10/28
项目:
子组件传父组件数据
Vue框架设计笔记笔记更新日期2022年10月28日
时间2022年10月28日11:45:25
时间2022年10月24日18:49:33
7、2022/10/28
项目:
子组件传父组件数据
Vue框架设计笔记笔记更新日期2022年10月28日
时间2022年10月28日11:45:25