构建发布dist目录,添加AppShare和Article组件

This commit is contained in:
2025-12-24 16:31:45 +08:00
parent 6c16c4b37c
commit 662929b150
17 changed files with 372 additions and 342 deletions

View File

@ -17,6 +17,14 @@
<script setup lang="ts">
const route = useRoute()
const footer = ref<HTMLElement | null>(null)
onMounted(() => {
// 计算footer的高度
const footerHeight = footer.value?.clientHeight || 0;
console.log('footerHeight', footerHeight);
})
</script>
<style scoped>