naive-ui/demo/documentation/components/popconfirm/zhCN/customIcon.md
2019-12-23 16:31:26 +08:00

427 B

Custom Icon

<n-popconfirm
  positive-text="ok"
  negative-text="not ok"
>
  <template v-slot:icon>
    <n-icon
      color="red"
    >
      <md-hand />
    </n-icon>
  </template>
  <template v-slot:activator>
    <n-button>Quit</n-button>
  </template>
  Are you sure to quit this game?
</n-popconfirm>
import mdHand from 'naive-ui/lib/icons/md-hand'

export default {
  components: {
    mdHand
  }
}