2016-10-26 11:45:00 +08:00
|
|
|
<style>
|
|
|
|
.tooltip_out{
|
|
|
|
border: 1px solid #ccc;
|
2016-10-26 13:51:05 +08:00
|
|
|
padding: 50px;
|
2016-10-26 11:45:00 +08:00
|
|
|
}
|
|
|
|
body{
|
2016-10-26 12:04:40 +08:00
|
|
|
height: 1000px;
|
2016-10-26 11:45:00 +08:00
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
</style>
|
2016-09-20 09:30:35 +08:00
|
|
|
<template>
|
2016-10-26 11:45:00 +08:00
|
|
|
<div class="tooltip_out">
|
2016-10-26 12:04:40 +08:00
|
|
|
123
|
2016-10-26 11:45:00 +08:00
|
|
|
</div>
|
2016-10-26 12:04:40 +08:00
|
|
|
<div class="tooltip_out">
|
2016-10-26 13:51:05 +08:00
|
|
|
<Tooltip content="Top23321" placement="left">
|
|
|
|
<Button>上面的左面</Button>
|
|
|
|
</Tooltip>
|
2016-10-26 12:04:40 +08:00
|
|
|
</div>
|
|
|
|
<Row>
|
|
|
|
<i-col span="12">
|
|
|
|
<Tooltip content="Top Left 提示文字" placement="top-start">
|
|
|
|
<Button>上面的左面</Button>
|
|
|
|
</Tooltip>
|
|
|
|
</i-col>
|
|
|
|
<i-col span="12">
|
|
|
|
<Tooltip content="Top Left 提示文字" placement="top-start">
|
|
|
|
<Button>上面的左面</Button>
|
|
|
|
</Tooltip>
|
|
|
|
</i-col>
|
|
|
|
</Row>
|
2016-09-20 09:30:35 +08:00
|
|
|
</template>
|
|
|
|
<script>
|
2016-10-26 12:04:40 +08:00
|
|
|
import { Tooltip, Button, Row, iCol } from 'iview';
|
2016-09-20 09:30:35 +08:00
|
|
|
|
|
|
|
export default {
|
2016-10-26 12:04:40 +08:00
|
|
|
components: { Tooltip, Button, Row, iCol },
|
2016-09-20 09:30:35 +08:00
|
|
|
props: {
|
|
|
|
|
|
|
|
},
|
|
|
|
data () {
|
|
|
|
return {
|
2016-10-26 10:03:16 +08:00
|
|
|
|
2016-09-20 09:30:35 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|