问题 I basically need to be able to trigger something within one or more components (that are being dynamically added via svelte:component) when an icon/button within the parent component is clicked. e.g. I need to hook the parts denoted with ** below:- <script> let charts = [ ChartA, ChartB, ChartC ]; </script> {#each charts as chart, i} <div class="wrapper"> <div class="icon" on:click={**HowToPassClickEventToComponent**}></div> <div class="content"> <svelte:component this={charts[i]} {*