修改版权信息

master
fuxiaochun 2023-08-22 13:34:44 +08:00
parent d3924e9d70
commit 9beb538641
1 changed files with 3 additions and 1 deletions

View File

@ -11,15 +11,17 @@
<p>联系电话{{ website.info.contact_phone }}</p>
<p>邮箱{{ website.info.contact_email }}</p>
<p>联系地址{{ website.info.contact_address }}</p>
<p>copyright &copy; 2023; <span>海国图智信息科技 (广州)有限公司</span></p>
<p>Copyright &copy; {{ curYear }} <span>{{ website.info.copyright }}</span></p>
</div>
</div>
</template>
<script setup>
import { useWebsite } from '@/stores/website';
import { ref } from 'vue';
const website = useWebsite();
const curYear = ref(new Date().getFullYear());
</script>
<style lang="scss" scoped>