1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <template> <div> <!--子對父傳值時--> <button class="el-button el-button--success" @click="toEmit">子组件向外傳遞數據</button> </div> </template> <script setup> //Vue3.2 版本后 defineProps 和 defineEmits 無需再導入 import {ref} from 'vue'
const childrenSay = ref('我是小孩') const emits = defineEmits(['childClick']) //點擊事件,向父組件傳值 const toEmit = () => { // 觸發父組件事件childClick攜帶參數 emits('childClick', childrenSay) } </script>
|