naive-ui/demo/documentation/components/popconfirm/enUS/customIcon.md
2020-01-31 22:36:22 +08:00

442 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 Game</n-button>
  </template>
  How can you be strong without purchasing?
</n-popconfirm>
import mdHand from 'naive-ui/lib/icons/md-hand'

export default {
  components: {
    mdHand
  }
}