Vue Memo

20240323 Collapse不會動態延長

描述

抄CHATGPT幫我做的Collapse時
會有一個小問題,在Collapse的內容會動態更新時,更新後長度如果變長,會看不到新的元素

  • 原本的code
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<template>
  <div class="container mx-auto block py-2.5 px-4 rounded hover:bg-gray-600">
    <button
      @click="toggleCollapsible"
      class="text-left w-full focus:outline-none"
    >
      <h2>{{ Title }}</h2>
    </button>
  </div>
  <div id="collapsibleContent" class="collapsible pl-6" ref="Content">
    <slot name="Collapse"></slot>
  </div>
</template>

<script lang="ts" setup>
const Content = ref();

const { Title } = defineProps(["Title"]);
const toggleCollapsible = () => {
  let content = Content.value;
  if (content.style.maxHeight) {
    content.style.maxHeight = null;
  } else {
    content.style.maxHeight = content.scrollHeight + "px";
  }
};

</script>

<style>
.collapsible {
  transition: max-height 0.3s ease-out;
  overflow: hidden;
  max-height: 0;
}
</style>

方法

可能不是最好的解,但可行(X

1. 我一開始把maxHeight給了一個比較大的數字 ex. 500px
2. 想用watch去監測 content.scrollHeight
3. 透過onUpdated去更新新的長度

1
2
3
4
5
6
onUpdated(() => {
  let content = Content.value;
  if (content.style.maxHeight !== null) {
    content.style.maxHeight = content.scrollHeight + "px";
  }
});

反正是可行的... 如果有更好的解在請各位留言告訴我

REF:
https://blog.csdn.net/wsdnnnnnnnnn/article/details/130637980

有問題可以在下方utterances留言喔

updatedupdated2024-08-192024-08-19
載入評論