2016-09-20 09:30:35 +08:00
|
|
|
<template>
|
2017-01-16 19:13:59 +08:00
|
|
|
<div style="margin: 100px">
|
|
|
|
<Poptip trigger="hover" placement="bottom" title="提示标题" content="提示内容">
|
|
|
|
<i-button>hover 激活</i-button>
|
|
|
|
</Poptip>
|
|
|
|
<Poptip title="提示标题" placement="bottom" content="提示内容">
|
|
|
|
<i-button>click 激活</i-button>
|
|
|
|
</Poptip>
|
|
|
|
<Poptip trigger="focus" title="提示标题" content="提示内容">
|
|
|
|
<i-input type="textarea"></i-input>
|
|
|
|
<!--<i-button>focus 激活</i-button>-->
|
|
|
|
</Poptip>
|
|
|
|
<Poptip trigger="focus" placement="bottom" title="提示标题" content="提示内容">
|
|
|
|
<i-input></i-input>
|
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 {
|
2016-10-28 17:24:52 +08:00
|
|
|
|
2016-09-20 09:30:35 +08:00
|
|
|
}
|
2016-10-28 17:24:52 +08:00
|
|
|
</script>
|