12345678910111213141516171819202122232425262728293031323334 |
- import './index.less';
- import { defineComponent } from 'vue';
- import { Layout } from 'ant-design-vue';
- import { GithubFilled } from '@ant-design/icons-vue';
- import { DOC_URL, GITHUB_URL, SITE_URL } from '/@/settings/siteSetting';
- import { openWindow } from '/@/utils';
- import { useI18n } from '/@/hooks/web/useI18n';
- export default defineComponent({
- name: 'LayoutContent',
- setup() {
- const { t } = useI18n('layout.footer');
- return () => {
- return (
- <Layout.Footer class="layout-footer">
- {() => (
- <>
- <div class="layout-footer__links">
- <a onClick={() => openWindow(SITE_URL)}>{t('onlinePreview')}</a>
- <GithubFilled onClick={() => openWindow(GITHUB_URL)} class="github" />
- <a onClick={() => openWindow(DOC_URL)}>{t('onlineDocument')}</a>
- </div>
- <div>Copyright ©2020 Vben Admin</div>
- </>
- )}
- </Layout.Footer>
- );
- };
- },
- });
|