1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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={[
{
key: 'EVM',
title: 'EVM 首页',
href: 'https://gitee.com/scriptiot/evm',
blankTarget: true,
},
{
key: 'gitee',
title: <Icon type="github" />,
href: 'https://gitee.com/scriptiot/evm',
blankTarget: true,
},
{
key: 'ByteCode',
title: 'ByteCode',
href: 'http://evmiot.com',
blankTarget: true,
},
]}
copyright={
<div>
Copyright <Icon type="copyright" /> 2021 武汉市字节码科技有限公司
</div>
}
/>
</Footer>
);
}
}
export default FooterView;