Skip to content

Commit

Permalink
fix(frontend): 使用されているexposeを復活させる (#14764)
Browse files Browse the repository at this point in the history
  • Loading branch information
kakkokari-gtyih authored Oct 13, 2024
1 parent fb23b24 commit 088e05e
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions packages/frontend/src/components/global/MkStickyContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SPDX-License-Identifier: AGPL-3.0-only
-->

<template>
<div>
<div ref="rootEl">
<div ref="headerEl" :class="$style.header">
<slot name="header"></slot>
</div>
Expand All @@ -22,12 +22,13 @@ SPDX-License-Identifier: AGPL-3.0-only
</template>

<script lang="ts" setup>
import { onMounted, onUnmounted, provide, inject, Ref, ref, watch, shallowRef } from 'vue';
import { onMounted, onUnmounted, provide, inject, Ref, ref, watch, useTemplateRef } from 'vue';

import { CURRENT_STICKY_BOTTOM, CURRENT_STICKY_TOP } from '@@/js/const.js';

const headerEl = shallowRef<HTMLElement>();
const footerEl = shallowRef<HTMLElement>();
const rootEl = useTemplateRef('rootEl');
const headerEl = useTemplateRef('headerEl');
const footerEl = useTemplateRef('footerEl');

const headerHeight = ref<string | undefined>();
const childStickyTop = ref(0);
Expand Down Expand Up @@ -76,6 +77,10 @@ onMounted(() => {
onUnmounted(() => {
observer.disconnect();
});

defineExpose({
rootEl,
});
</script>

<style lang='scss' module>
Expand Down

0 comments on commit 088e05e

Please sign in to comment.