UNPKG

@alicloud/console-components

Version:

Alibaba Cloud React Components

13 lines (12 loc) 616 B
/** * title: "高亮链接" * description: "Button组件添加 text 属性为文字按钮,通过 component 属性 控制最终渲染的 jsx 标签标签类型为a标签。" */ import React from 'react'; import { Button } from '@alicloud/console-components'; export default (function () { return (React.createElement("div", null, React.createElement(Button, { type: "primary", component: "a", text: true }, "\u94FE\u63A5\u5185\u5BB9"), "\u00A0\u00A0\u00A0", React.createElement(Button, { type: "primary", component: "a", text: true, disabled: true }, "\u94FE\u63A5\u5185\u5BB9"))); });