How to import component during the runtime

I started using Vue JS 3 and I would like to know if I can and its possible to import component ( modals ) during the runtime I tried that but didn’t work

watch:{
        modal:{
            handler(newModal){
                App.component('modal', () => import(newModal))
            }
        }
    },