import snippets from './snippets'; export default { snippets, componentName: 'Anchor.Link', title: '锚点链接', category: '其他', group:"Antd组件", props: [ { name: 'href', title: { label: '锚点链接', tip: '锚点链接' }, propType: 'string', }, { name: 'target', title: { label: 'target', tip: '该属性指定在何处显示链接的资源', }, propType: 'string', }, { name: 'title', title: { label: '内容', tip: '内容' }, propType: 'string', }, ], configure: { supports: { style: true } }, };