Vue.js 中的 @click 事件详解
2024-09-10除了使用@click指令监听原生 DOM 事件,Vue.js 还允许我们自定义事件,并在组件之间进行通信。-- 父组件 --> < template > < div > < ChildComponent @custom-event = " handleCustomEvent " /> < script > import ChildComponent from './ChildComponent.vue';_vue click
2024-09-10除了使用@click指令监听原生 DOM 事件,Vue.js 还允许我们自定义事件,并在组件之间进行通信。-- 父组件 --> < template > < div > < ChildComponent @custom-event = " handleCustomEvent " /> < script > import ChildComponent from './ChildComponent.vue';_vue click