mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-23 12:06:36 +08:00
16 lines
361 B
Vue
16 lines
361 B
Vue
<script setup lang="ts">
|
|
defineOptions({
|
|
name: 'GlobalFooter'
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<DarkModeContainer class="h-full flex-center">
|
|
<a href="https://github.com/soybeanjs/soybean-admin/blob/main/LICENSE" target="_blank" rel="noopener noreferrer">
|
|
Copyright MIT © 2021 Soybean
|
|
</a>
|
|
</DarkModeContainer>
|
|
</template>
|
|
|
|
<style scoped></style>
|