1.父传子
<template>
<div class="container">
<Hello title="我是hello的爸爸" :list='list'/>
<hr>
<h4>子组件传数据过来了 {{fromSon}}</h4>
</div>
</template>
<script setup>
import { reactive, toRefs } from 'vue'
import Hello from '@/components/HelloWorld'
const list = reactive([
{ id: 1, name: '哈哈哈' },
{ id: 2, name: '嘿嘿嘿' },
{ id: 3, name: '呵呵呵' },
])
</script>
子接收
<template>
<div class="container">
我是Hello
<h5>父组件传了一句话过来 String---- {{title}}</h5>
<h5>父组件传了一个数组过来 Array --- {{list}}</h5>
</div>
</template>
<script setup>
import { reactive, toRefs } from 'vue'
defineProps({
title:String,
list:Array
})
</script>
2.子传父 emits传递
<template>
<div class="container">
<button @click="clickTap">点击这里给父组件传递些许数据</button>
</div>
</template>
<script setup>
import { reactive, toRefs } from 'vue'
const list = reactive([1,2,3,4])
const emit = defineEmits(['on-click'])
const clickTap = () => {
emit('on-click',list,true)
}
</script>
父接收
<template>
<div class="container">
<Hello @on-click="getList" />
<hr>
<h4>子组件传数据过来了 {{fromSon}}</h4>
</div>
</template>
<script setup>
import { reactive, toRefs } from 'vue'
import Hello from '@/components/HelloWorld'
const fromSon = reactive([])
const getList = (list,flag) => {
fromSon.push(...list)
console.log(flag);
console.log('子组件传过来的值',list);
}
</script>
<style lang="scss" scoped>
</style>
3.子传父 通过ref传递
<template>
<div class="container">
<button @click="clickTap">点击这里给父组件传递些许数据</button>
</div>
</template>
<script setup>
import { reactive, toRefs } from 'vue'
const list = reactive([1,2,3,4])
const emit = defineEmits(['on-click'])
const clickTap = () => {
emit('on-click')
}
defineExpose({
list
})
</script>
父接收
<template>
<div class="container">
<Hello ref="menus" @on-click="getList" />
</div>
</template>
<script setup>
import { reactive, toRefs,ref } from 'vue'
import Hello from '@/components/HelloWorld'
const menus = ref(null)
const getList = (list,flag) => {
console.log(menus.value);
}
</script>
|