provide('getMenuInfo', getMenuInfo);
父頁面程式碼如上,provide從vue匯入,
getMenuInfo既是方法也是匯出的名稱
子頁面使用:
const getMenuInfo = inject<() => void>('getMenuInfo');
在子頁面的任意位置就可以呼叫這個方法了
provide('getMenuInfo', getMenuInfo);
父頁面程式碼如上,provide從vue匯入,
getMenuInfo既是方法也是匯出的名稱
子頁面使用:
const getMenuInfo = inject<() => void>('getMenuInfo');
在子頁面的任意位置就可以呼叫這個方法了