mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
perf(TextEllipsis): reuse windowWidth to avoid repeat calculations (#12471)
This commit is contained in:
parent
3410b1c74f
commit
f0b7af18c6
@ -7,11 +7,13 @@ import {
|
||||
type ExtractPropTypes,
|
||||
} from 'vue';
|
||||
|
||||
// Composables
|
||||
import { useEventListener } from '@vant/use';
|
||||
|
||||
// Utils
|
||||
import { makeNumericProp, makeStringProp, createNamespace } from '../utils';
|
||||
import {
|
||||
makeNumericProp,
|
||||
makeStringProp,
|
||||
createNamespace,
|
||||
windowWidth,
|
||||
} from '../utils';
|
||||
|
||||
const [name, bem] = createNamespace('text-ellipsis');
|
||||
|
||||
@ -196,9 +198,10 @@ export default defineComponent({
|
||||
|
||||
onMounted(calcEllipsised);
|
||||
|
||||
watch(() => [props.content, props.rows, props.position], calcEllipsised);
|
||||
|
||||
useEventListener('resize', calcEllipsised);
|
||||
watch(
|
||||
[windowWidth, () => [props.content, props.rows, props.position]],
|
||||
calcEllipsised,
|
||||
);
|
||||
|
||||
return () => (
|
||||
<div ref={root} class={bem()}>
|
||||
|
Loading…
x
Reference in New Issue
Block a user