In Vue, you create an app instance first. Then you add global properties or methods to app.config.globalProperties. These are shared across all components. After adding, you mount the app to the DOM. Components can then access these global properties using this.$propertyName. For example, a global method $greet can be called inside any component to return a greeting. This helps share common functions or data easily. The execution table shows each step: creating the app, adding global methods, mounting, and component usage. Remember, components only see global properties after the app is mounted.