56 lines
1002 B
Vue
56 lines
1002 B
Vue
|
<template>
|
||
|
<div class="fgmtyycl _panel" :style="{ top: top + 'px', left: left + 'px' }" @mouseover="() => { $emit('mouseover'); }" @mouseleave="() => { $emit('mouseleave'); }">
|
||
|
<x-url-preview :url="url" style="width: 600px;"/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
import i18n from '../i18n';
|
||
|
import XUrlPreview from './url-preview.vue';
|
||
|
|
||
|
export default Vue.extend({
|
||
|
i18n,
|
||
|
|
||
|
components: {
|
||
|
XUrlPreview
|
||
|
},
|
||
|
|
||
|
props: {
|
||
|
url: {
|
||
|
type: String,
|
||
|
required: true
|
||
|
},
|
||
|
source: {
|
||
|
required: true
|
||
|
}
|
||
|
},
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
u: null,
|
||
|
top: 0,
|
||
|
left: 0,
|
||
|
};
|
||
|
},
|
||
|
|
||
|
mounted() {
|
||
|
const rect = this.source.getBoundingClientRect();
|
||
|
const x = ((rect.left + (this.source.offsetWidth / 2)) - (300 / 2)) + window.pageXOffset;
|
||
|
const y = rect.top + this.source.offsetHeight + window.pageYOffset;
|
||
|
|
||
|
this.top = y;
|
||
|
this.left = x;
|
||
|
},
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.fgmtyycl {
|
||
|
position: absolute;
|
||
|
z-index: 11000;
|
||
|
//width: 300px;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
</style>
|