摘要: // 子组件触发父组件的方法 const emit = defineEmits(["back", 'go']); const go:() => void = () => { emit('go', porps.currentPage+1) } const back:() => void = () => 阅读全文
posted @ 2022-03-18 17:20 Life_countdown 阅读(493) 评论(0) 推荐(0)