Footer.js 1.19 KB
Newer Older
wanli's avatar
wanli committed
1 2 3 4 5 6 7 8 9 10
import { Layout, Icon } from "ant-design-vue";
import GlobalFooter from '@/components/GlobalFooter';
const { Footer } = Layout;
const FooterView = {
    render(){
        return (
            <Footer style={{ padding: 0 }}>
              <GlobalFooter
                links={[
                  {
wanli's avatar
wanli committed
11 12 13
                    key: 'EVM',
                    title: 'EVM 首页',
                    href: 'https://gitee.com/scriptiot/evm',
wanli's avatar
wanli committed
14 15 16
                    blankTarget: true,
                  },
                  {
wanli's avatar
wanli committed
17
                    key: 'gitee',
wanli's avatar
wanli committed
18
                    title: <Icon type="github" />,
wanli's avatar
wanli committed
19
                    href: 'https://gitee.com/scriptiot/evm',
wanli's avatar
wanli committed
20 21 22
                    blankTarget: true,
                  },
                  {
wanli's avatar
wanli committed
23 24 25
                    key: 'ByteCode',
                    title: 'ByteCode',
                    href: 'http://evmiot.com',
wanli's avatar
wanli committed
26 27 28 29 30
                    blankTarget: true,
                  },
                ]}
                copyright={
                  <div>
wanli's avatar
wanli committed
31
                    Copyright <Icon type="copyright" /> 2021 武汉市字节码科技有限公司
wanli's avatar
wanli committed
32 33 34 35 36 37 38 39
                  </div>
                }
              />
            </Footer>
          );
    }
}
export default FooterView;