내가 자꾸 까먹어서 쓰는 개발 이야기/Vue.js
vue3 typescript composition api 전역 함수 만들기
가장 단순하게 사용할 수 있는 console.log() 메서드를 $sendConsole() 이라는 이름으로 래핑해본다. helpers.tsimport type {App} from 'vue';const helpers = { $sendConsole(msg: string): void { console.log(msg); }};declare module '@vue/runtime-core' { interface ComponentCustomProperties { $sendConsole: (msg: string) => void; }}export default { install(Vue: App) { Vue.config.globlaProperties.$sendConsole = helpers..
2024. 5. 29. 15:06
최근댓글