650ce7b8
梁灏
optimize Tooltip ...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<style scoped>
.top,.bottom{
text-align: center;
}
.center{
width: 300px;
margin: 10px auto;
overflow: hidden;
}
.center-left{
float: left;
}
.center-right{
float: right;
}
</style>
<template>
<div class="top">
|
7f1edb6a
梁灏
Poptip、Tooltip ad...
|
19
|
<Tooltip content="Top Left 文字提示" placement="top-start" @on-popper-hide="hide">
|
650ce7b8
梁灏
optimize Tooltip ...
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<i-button>上左</i-button>
</Tooltip>
<Tooltip content="Top Center 文字提示" placement="top">
<i-button>上边</i-button>
</Tooltip>
<Tooltip content="Top Right 文字提示" placement="top-end">
<i-button>上右</i-button>
</Tooltip>
</div>
<div class="center">
<div class="center-left">
<Tooltip content="Left Top 文字提示" placement="left-start">
<i-button>左上</i-button>
</Tooltip><br><br>
<Tooltip content="Left Center 文字提示" placement="left">
<i-button>左边</i-button>
</Tooltip><br><br>
<Tooltip content="Left Bottom 文字提示" placement="left-end">
<i-button>左下</i-button>
</Tooltip>
</div>
<div class="center-right">
<Tooltip content="Right Top 文字提示" placement="right-start">
<i-button>右上</i-button>
</Tooltip><br><br>
<Tooltip content="Right Center 文字提示" placement="right">
<i-button>右边</i-button>
</Tooltip><br><br>
<Tooltip content="Right Bottom 文字提示" placement="right-end">
<i-button>右下</i-button>
</Tooltip>
</div>
</div>
<div class="bottom">
<Tooltip content="Bottom Left 文字提示" placement="bottom-start">
<i-button>下左</i-button>
</Tooltip>
<Tooltip content="Bottom Center 文字提示" placement="bottom">
<i-button>下边</i-button>
</Tooltip>
<Tooltip content="Bottom Right 文字提示" placement="bottom-end">
<i-button>下右</i-button>
</Tooltip>
</div>
</template>
<script>
|
7f1edb6a
梁灏
Poptip、Tooltip ad...
|
66
|
import { Tooltip, iButton, Message } from 'iview';
|
650ce7b8
梁灏
optimize Tooltip ...
|
67
|
export default {
|
7f1edb6a
梁灏
Poptip、Tooltip ad...
|
68
69
70
71
72
73
|
components: { Tooltip, iButton },
methods: {
hide () {
Message.info('hide')
}
}
|
650ce7b8
梁灏
optimize Tooltip ...
|
74
75
|
}
</script>
|