• wanli's avatar
    update · bae8cfdf
    wanli authored
    bae8cfdf
Footer.js 1.19 KB
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;