copyright.vue 368 B

1234567891011121314151617
  1. <script setup lang="ts">
  2. import { $t } from '@vben/locales';
  3. import SwitchItem from '../switch-item.vue';
  4. defineOptions({
  5. name: 'PreferenceBreadcrumbConfig',
  6. });
  7. const copyrightEnable = defineModel<boolean>('copyrightEnable');
  8. </script>
  9. <template>
  10. <SwitchItem v-model="copyrightEnable">
  11. {{ $t('preferences.copyright.enable') }}
  12. </SwitchItem>
  13. </template>