移动端适配
This commit is contained in:
@@ -3,6 +3,7 @@ import { ref, computed } from 'vue'
|
||||
export const useGlobalStore = defineStore('global', () => {
|
||||
const state = ref({
|
||||
loading: false,// 全局loading
|
||||
windowWidth: window.innerWidth,// 页面宽度
|
||||
})
|
||||
|
||||
const setLoading = (v: boolean) => { state.value.loading = v }
|
||||
@@ -12,3 +13,6 @@ export const useGlobalStore = defineStore('global', () => {
|
||||
setLoading,
|
||||
}
|
||||
})
|
||||
window.addEventListener('resize', () => {
|
||||
useGlobalStore().state.windowWidth = window.innerWidth
|
||||
})
|
||||
Reference in New Issue
Block a user