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,
|
type ExtractPropTypes,
|
||||||
} from 'vue';
|
} from 'vue';
|
||||||
|
|
||||||
// Composables
|
|
||||||
import { useEventListener } from '@vant/use';
|
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
import { makeNumericProp, makeStringProp, createNamespace } from '../utils';
|
import {
|
||||||
|
makeNumericProp,
|
||||||
|
makeStringProp,
|
||||||
|
createNamespace,
|
||||||
|
windowWidth,
|
||||||
|
} from '../utils';
|
||||||
|
|
||||||
const [name, bem] = createNamespace('text-ellipsis');
|
const [name, bem] = createNamespace('text-ellipsis');
|
||||||
|
|
||||||
@ -196,9 +198,10 @@ export default defineComponent({
|
|||||||
|
|
||||||
onMounted(calcEllipsised);
|
onMounted(calcEllipsised);
|
||||||
|
|
||||||
watch(() => [props.content, props.rows, props.position], calcEllipsised);
|
watch(
|
||||||
|
[windowWidth, () => [props.content, props.rows, props.position]],
|
||||||
useEventListener('resize', calcEllipsised);
|
calcEllipsised,
|
||||||
|
);
|
||||||
|
|
||||||
return () => (
|
return () => (
|
||||||
<div ref={root} class={bem()}>
|
<div ref={root} class={bem()}>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user