chore: fix spacer component
This commit is contained in:
parent
4ba4062519
commit
c194eddb1b
1 changed files with 6 additions and 0 deletions
|
@ -33,10 +33,16 @@ export default defineComponent({
|
|||
|
||||
onMounted(() => {
|
||||
ro = new ResizeObserver((entries) => {
|
||||
/* iOSが対応していない
|
||||
adjust({
|
||||
width: entries[0].borderBoxSize[0].inlineSize,
|
||||
height: entries[0].borderBoxSize[0].blockSize,
|
||||
});
|
||||
*/
|
||||
adjust({
|
||||
width: root.value.offsetWidth,
|
||||
height: root.value.offsetHeight,
|
||||
});
|
||||
});
|
||||
ro.observe(root.value);
|
||||
|
||||
|
|
Loading…
Reference in a new issue