The Copyright component is a footer element that displays copyright information at the bottom of the layout. Its visibility and the text it displays are controlled via the useSettingsStore from the settings module.
To change the footer behavior, you must interact with the settingsStore properties:
footerVisible: A boolean that determines if the footer is rendered.footerContent: A string containing the text to be displayed in the footer.
Note: This component is part of the standard layout and is automatically driven by the application settings.
// To control the Copyright component, you must use the settings store
import useSettingsStore from '@/store/modules/settings'
const settingsStore = useSettingsStore()
// Example: Show the footer with custom text
settingsStore.footerVisible = true
settingsStore.footerContent = '© 2023 My Company. All rights reserved.'