Files
ruoyi-plus-soybean/src/layouts/modules/global-footer/index.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>