455 B
455 B
#### 自定义 icon
自定义 icon。
#### Custom icon
Custom icon.
<template>
<a-result title="Great, we have done all the operations!">
<template #icon>
<a-icon type="smile" theme="twoTone" />
</template>
<template #extra>
<a-button type="primary">
Next
</a-button>
</template>
</a-result>
</template>
<script>
export default {
data() {
return {};
},
};
</script>