2016-09-20 09:30:35 +08:00
|
|
|
<template>
|
2017-03-03 15:19:21 +08:00
|
|
|
<div style="margin: 100px;">
|
|
|
|
<Poptip
|
|
|
|
confirm
|
|
|
|
title="您确认删除这条内容吗?"
|
|
|
|
@on-ok="ok"
|
|
|
|
@on-cancel="cancel">
|
|
|
|
<Button>删除</Button>
|
2017-01-16 19:13:59 +08:00
|
|
|
</Poptip>
|
2017-03-03 15:19:21 +08:00
|
|
|
<Poptip
|
|
|
|
confirm
|
|
|
|
title="Are you sure delete this task?"
|
|
|
|
@on-ok="ok"
|
|
|
|
@on-cancel="cancel"
|
|
|
|
ok-text="yes"
|
|
|
|
cancel-text="no">
|
|
|
|
<Button>国际化</Button>
|
2016-10-27 10:30:32 +08:00
|
|
|
</Poptip>
|
2016-10-26 12:04:40 +08:00
|
|
|
</div>
|
2016-09-20 09:30:35 +08:00
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
2017-03-03 15:19:21 +08:00
|
|
|
methods: {
|
|
|
|
ok () {
|
|
|
|
this.$Message.info('点击了确定');
|
|
|
|
},
|
|
|
|
cancel () {
|
|
|
|
this.$Message.info('点击了取消');
|
|
|
|
}
|
|
|
|
}
|
2016-09-20 09:30:35 +08:00
|
|
|
}
|
2016-10-28 17:24:52 +08:00
|
|
|
</script>
|