2016-09-20 09:30:35 +08:00
|
|
|
<template>
|
2020-09-03 15:53:31 +08:00
|
|
|
<div>
|
|
|
|
<Poptip trigger="hover" title="Title" content="content">
|
|
|
|
<Button>Hover</Button>
|
|
|
|
</Poptip>
|
|
|
|
<Poptip title="Title" content="content">
|
|
|
|
<Button>Click</Button>
|
|
|
|
</Poptip>
|
|
|
|
<Poptip trigger="focus" title="Title" content="content">
|
|
|
|
<Button>Focus</Button>
|
|
|
|
</Poptip>
|
|
|
|
<Poptip trigger="focus" title="Title" content="content">
|
|
|
|
<Input placeholder="Input focus" />
|
|
|
|
</Poptip>
|
2016-10-26 12:04:40 +08:00
|
|
|
</div>
|
2016-09-20 09:30:35 +08:00
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
2018-04-10 15:59:08 +08:00
|
|
|
|
2016-09-20 09:30:35 +08:00
|
|
|
}
|
2016-10-28 17:24:52 +08:00
|
|
|
</script>
|