10 lines
240 B
Vue
10 lines
240 B
Vue
|
<script setup lang="ts">
|
||
|
const VITE_APP_TITLE = import.meta.env.VITE_APP_TITLE
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<footer un-flex-center un-mb-20px un-text-14px un-color-hex-969799>
|
||
|
MIT © 2025-PRESENT {{ VITE_APP_TITLE }}
|
||
|
</footer>
|
||
|
</template>
|