You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< docs >
-- -
order : 1
title :
zh - CN : 图标按钮
en - US : Icon
-- -
# # zh - CN
当需要在 ` Button ` 内嵌入 ` Icon ` 时 , 可以设置 ` icon ` 属性 , 或者直接在 ` Button ` 内使用 ` Icon ` 组件 。
如果想控制 ` Icon ` 具体的位置 , 只能直接使用 ` Icon ` 组件 , 而非 ` icon ` 属性 。
# # en - US
` Button ` components can contain an ` Icon ` . This is done by setting the ` icon ` property or placing an ` Icon ` component within the ` Button ` .
If you want specific control over the positioning and placement of the ` Icon ` , then that should be done by placing the ` Icon ` component within the ` Button ` rather than using the ` icon ` property .
< / docs >
< template >
< a -space direction = "vertical" >
< a -space warp >
< a -tooltip title = "search" >
< a -button type = "primary" shape = "circle" :icon ="h(SearchOutlined)" / >
< / a - t o o l t i p >
< a -button type = "primary" shape = "circle" > A < / a - b u t t o n >
< a -button type = "primary" :icon ="h(SearchOutlined)" > Search < / a - b u t t o n >
< a -tooltip title = "search" >
< a -button shape = "circle" :icon ="h(SearchOutlined)" / >
< / a - t o o l t i p >
< a -button :icon ="h(SearchOutlined)" > Search < / a - b u t t o n >
< / a - s p a c e >
< a -space warp >
< a -tooltip title = "search" >
< a -button shape = "circle" :icon ="h(SearchOutlined)" / >
< / a - t o o l t i p >
< a -button :icon ="h(SearchOutlined)" > Search < / a - b u t t o n >
< a -tooltip title = "search" >
< a -button type = "dashed" shape = "circle" :icon ="h(SearchOutlined)" / >
< / a - t o o l t i p >
< a -button type = "dashed" :icon ="h(SearchOutlined)" > Search < / a - b u t t o n >
< a -button :icon ="h(SearchOutlined)" href = "https://www.google.com" / >
< / a - s p a c e >
< / a - s p a c e >
< / template >
< script lang = "ts" setup >
import { h } from 'vue' ;
import { SearchOutlined } from '@ant-design/icons-vue' ;
< / script >