useGlobalProperties.js 284 B

12345678
  1. // mouse.js
  2. import { ref, onMounted, onUnmounted, getCurrentInstance } from 'vue'
  3. import { onReady, onReachBottom } from '@dcloudio/uni-app'
  4. export const useGlobalProperties = () => {
  5. const instance = getCurrentInstance()
  6. return instance.appContext.app.config.globalProperties
  7. }