2019-08-27 09:42:40 +08:00
|
|
|
<template>
|
2019-09-17 18:39:27 +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>
|
2019-08-27 09:42:40 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|