Files
vue-ts-example/src/App.vue
严浩 12a02eb193
All checks were successful
/ depcheck (push) Successful in 1m26s
/ build-and-deploy-to-vercel (push) Successful in 1m9s
/ playwright (push) Successful in 2m57s
feat: 添加 useIntersectionObserverList 页面,支持懒加载和可见性检测
2024-12-07 19:28:37 +08:00

11 lines
268 B
Vue

<script setup lang="ts">
const VITE_BUILD_COMMIT = import.meta.env.VITE_BUILD_COMMIT;
</script>
<template>
<div fixed rounded-br-4 bottom-0 left-0 z-9999 px-4 py-2 bg-black text-white op-75>
commit: {{ VITE_BUILD_COMMIT }}
</div>
<RouterView />
</template>