20 lines
433 B
Vue
20 lines
433 B
Vue
<template>
|
|
<div class="d-flex align-center">
|
|
<div class="flex-shrink">
|
|
</div>
|
|
<div class="flex-fill">
|
|
<div class="text-right text-muted">{{ copyright }}</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import useSystemStore from '@/stores/system'
|
|
import { storeToRefs } from 'pinia';
|
|
|
|
|
|
const systemStore = useSystemStore()
|
|
|
|
const { copyright } = storeToRefs(systemStore);
|
|
|
|
</script> |