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