mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
version: v4.9.2
This commit is contained in:
parent
ab6593f022
commit
3f7e3722fd
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,5 +1,16 @@
|
|||||||
# CHANGE LOG
|
# CHANGE LOG
|
||||||
|
|
||||||
|
## 4.9.2
|
||||||
|
|
||||||
|
## Feats
|
||||||
|
|
||||||
|
- `useDevice` 支持 `observer` 配置项
|
||||||
|
- `postcss` 自动尺寸转换插件配置更新
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
|
||||||
|
- 修复菜单在小尺寸屏幕并且处于折叠状态,导致显示不完整的问题
|
||||||
|
|
||||||
## 4.9.1
|
## 4.9.1
|
||||||
|
|
||||||
更新核心依赖版本为主流版本。
|
更新核心依赖版本为主流版本。
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ray-template",
|
"name": "ray-template",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "4.9.0",
|
"version": "4.9.2",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.0.0 || >=20.0.0",
|
"node": "^18.0.0 || >=20.0.0",
|
||||||
|
@ -30,7 +30,7 @@ module.exports = {
|
|||||||
minPixelValue: 1,
|
minPixelValue: 1,
|
||||||
/** 允许在媒体查询中转换 px */
|
/** 允许在媒体查询中转换 px */
|
||||||
mediaQuery: false,
|
mediaQuery: false,
|
||||||
// exclude: /(\/|\\)(node_modules)(\/|\\)/, // 忽略某些文件夹下的文件或特定文件,例如 'node_modules' 下的文件
|
exclude: /(\/|\\)(node_modules)(\/|\\)/, // 忽略某些文件夹下的文件或特定文件,例如 'node_modules' 下的文件
|
||||||
include: [/^src[/\\].*\.(vue|tsx|jsx|ts(?!d))$/],
|
include: [/^src[/\\].*\.(vue|tsx|jsx|ts(?!d))$/],
|
||||||
preserve: true,
|
preserve: true,
|
||||||
},
|
},
|
||||||
|
@ -19,6 +19,11 @@ import { watchEffectWithTarget } from '@/utils'
|
|||||||
|
|
||||||
import type { UseWindowSizeOptions } from '@vueuse/core'
|
import type { UseWindowSizeOptions } from '@vueuse/core'
|
||||||
|
|
||||||
|
type Callback = (
|
||||||
|
isSmaller: boolean,
|
||||||
|
size: { width: number; height: number },
|
||||||
|
) => void
|
||||||
|
|
||||||
export interface UseDeviceOptions extends UseWindowSizeOptions {
|
export interface UseDeviceOptions extends UseWindowSizeOptions {
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -28,6 +33,7 @@ export interface UseDeviceOptions extends UseWindowSizeOptions {
|
|||||||
* @default 768
|
* @default 768
|
||||||
*/
|
*/
|
||||||
media?: number
|
media?: number
|
||||||
|
observer?: Callback
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -47,11 +53,17 @@ export interface UseDeviceOptions extends UseWindowSizeOptions {
|
|||||||
export function useDevice(options?: UseDeviceOptions) {
|
export function useDevice(options?: UseDeviceOptions) {
|
||||||
const { width, height } = useWindowSize(options)
|
const { width, height } = useWindowSize(options)
|
||||||
const isTabletOrSmaller = ref(false)
|
const isTabletOrSmaller = ref(false)
|
||||||
|
const { observer } = options ?? {}
|
||||||
|
|
||||||
const update = () => {
|
const update = () => {
|
||||||
const { media = 768 } = options ?? {}
|
const { media = 768 } = options ?? {}
|
||||||
|
|
||||||
isTabletOrSmaller.value = width.value <= media
|
isTabletOrSmaller.value = width.value <= media
|
||||||
|
|
||||||
|
observer?.(isTabletOrSmaller.value, {
|
||||||
|
width: width.value,
|
||||||
|
height: height.value,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
watchEffectWithTarget(update)
|
watchEffectWithTarget(update)
|
||||||
|
@ -55,7 +55,14 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
const { isTabletOrSmaller } = useDevice()
|
const { isTabletOrSmaller } = useDevice({
|
||||||
|
observer: (isSmaller) => {
|
||||||
|
if (isSmaller) {
|
||||||
|
// 避免菜单折叠时,在小尺寸屏幕导致菜单显示不完整
|
||||||
|
updateMenuState('collapsed', false)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
})
|
||||||
const modelGlobalDrawerValue = computed({
|
const modelGlobalDrawerValue = computed({
|
||||||
get: () => getVariableToRefs('globalDrawerValue').value,
|
get: () => getVariableToRefs('globalDrawerValue').value,
|
||||||
set: (val) => {
|
set: (val) => {
|
||||||
|
@ -58,7 +58,6 @@ export default defineConfig(({ mode }) => {
|
|||||||
'lodash-es',
|
'lodash-es',
|
||||||
'vue-hooks-plus',
|
'vue-hooks-plus',
|
||||||
'interactjs',
|
'interactjs',
|
||||||
'awesome-qr',
|
|
||||||
'pinia-plugin-persistedstate',
|
'pinia-plugin-persistedstate',
|
||||||
'currency.js',
|
'currency.js',
|
||||||
'mockjs',
|
'mockjs',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user