Files
vue-ts-example/src/App.vue
严浩 b1c0efb853
Some checks failed
/ playwright (push) Successful in 1m30s
/ depcheck (push) Successful in 1m19s
/ build-and-deploy-to-vercel (push) Failing after 1m50s
feat: 添加确认对话框组件,优化提示和对话框服务的交互逻辑
2024-12-14 20:01:38 +08:00

15 lines
335 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 />
<DynamicDialog />
<ConfirmDialog></ConfirmDialog>
<Toast />
</template>