9 lines
284 B
JavaScript
9 lines
284 B
JavaScript
// mouse.js
|
|
import { ref, onMounted, onUnmounted, getCurrentInstance } from 'vue'
|
|
import { onReady, onReachBottom } from '@dcloudio/uni-app'
|
|
|
|
export const useGlobalProperties = () => {
|
|
const instance = getCurrentInstance()
|
|
return instance.appContext.app.config.globalProperties
|
|
}
|