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

518 B

事件

positive-click & negative-click

<n-popconfirm
  @positive-click="handlePositiveClick"
  @negative-click="handleNegativeClick"
>
  <template v-slot:activator>
    <n-button>退出游戏</n-button>
  </template>
  我看 B 站的时候,听说有些冲钱也是找罪受。
</n-popconfirm>
export default {
  methods: {
    handlePositiveClick () {
      this.$NMessage.info('positive click')
    },
    handleNegativeClick () {
      this.$NMessage.info('negative click')
    }
  }
}