24 lines
567 B
Vue
24 lines
567 B
Vue
<template>
|
|
<div style="margin: 100px;">
|
|
<Poptip
|
|
confirm
|
|
transfer
|
|
title="您确认删除这条内容吗?"
|
|
@on-ok="ok"
|
|
@on-cancel="cancel">
|
|
<Button>删除</Button>
|
|
</Poptip>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
ok () {
|
|
this.$Message.info('点击了确定');
|
|
},
|
|
cancel () {
|
|
this.$Message.info('点击了取消');
|
|
}
|
|
}
|
|
}
|
|
</script>
|