Vue3.0父子组件传值,事件触发

Vue3.0父子组件传值,事件触发_第1张图片

父级组件

<template>
    <div class="parent bg-green-500 p-5 text-3xl">
        <div>Parent - 这里是父元素</div>
        <!-- title 为子组件定义的属性, @change 是子组件定义的事件名称 -->
        <Children title="来自父元素Title" @change="parentEvent">content</Children>
    </div>
</template>

<script setup>
import Children from "./Children.vue";
// 父级组件事件定义
const parentEvent = (val) => {
    console.log("Parent Event");
    console.log(val);
};
</script>

<style scoped>
.parent {
    width: 500px;
}
</style>

子组件

<template>
    <div class="bg-blue-500 h-40 p-5">
        <!-- 子组件自定义事件名称 -->
        <div @click="childrenEvent">Children - {{ props.title }}</div>
        <slot></slot>
    </div>
</template>

<script setup>
import { defineProps, defineEmits } from "vue";
// 属性定义接受父组件的传值
const props = defineProps({ title: String });
// 事件 名称自定义但父级调用事件需要使用这个名称@change
const emits = defineEmits(["change"]);
// 子组件自定义事件与父级无关可以自定义
const childrenEvent = () => {
    // 使用vue api 触发定义的事件
    emits("change", 1);
};
</script>

<style scoped></style>

你可能感兴趣的:(vue.js,vue.js,javascript,前端)