2016-09-20 09:30:35 +08:00
|
|
|
<template>
|
2017-10-23 14:12:02 +08:00
|
|
|
<div style="margin: 200px;">
|
|
|
|
<Poptip title="提示标题" transfer>
|
|
|
|
<div slot="content" style="padding: 50px">
|
|
|
|
<Button>click me</Button>
|
|
|
|
</div>
|
|
|
|
<Button>click 激活</Button>
|
2017-08-21 17:15:06 +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-08-15 10:07:15 +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>
|