globalProperties globalProperties vue3에서, App instance에는 라는 객체타입의 데이터가 있다. 말 그대로 Vue 앱의 환경과 관련된 정보가 담겨있는 객체다. 그 중 globalProeprties 라는 프로퍼티는 데이터는 모든 컴포넌트에서 this로 쉽게 접근이 가능하다. Composition API에서는 this의 사용이 불가능하므로 getCurrentInstance().appContext.config 형태로 접... vue3globalPropertiesApplication ConfigApplication Config
globalProperties vue3에서, App instance에는 라는 객체타입의 데이터가 있다. 말 그대로 Vue 앱의 환경과 관련된 정보가 담겨있는 객체다. 그 중 globalProeprties 라는 프로퍼티는 데이터는 모든 컴포넌트에서 this로 쉽게 접근이 가능하다. Composition API에서는 this의 사용이 불가능하므로 getCurrentInstance().appContext.config 형태로 접... vue3globalPropertiesApplication ConfigApplication Config