1.字符串和变量拼接写法
const mainUrl = 'http://test.xxxx'
<Button shape="round" href={mainUrl}>学习</Button>
<Button shape="round" href={mainUrl+"/catalog"} >目录</Button>
1.字符串和变量拼接写法
const mainUrl = 'http://test.xxxx'
<Button shape="round" href={mainUrl}>学习</Button>
<Button shape="round" href={mainUrl+"/catalog"} >目录</Button>