Files
DinQuant/quantdinger_vue/src/views/indicator-community/index.vue
T
TIANHE f43312a858 creat
Signed-off-by: TIANHE <TIANHE@GMAIL.COM>
2025-12-29 03:06:49 +08:00

42 lines
749 B
Vue

<template>
<div class="indicator-community-iframe">
<iframe
class="community-iframe"
:src="url"
title="Indicator Community"
frameborder="0"
referrerpolicy="no-referrer-when-downgrade"
allow="clipboard-read; clipboard-write; fullscreen"
/>
</div>
</template>
<script>
export default {
name: 'IndicatorCommunity',
data () {
return {
url: 'https://www.quantdinger.com'
}
}
}
</script>
<style lang="less" scoped>
.indicator-community-iframe {
position: relative;
left: -24px;
top: -24px;
width: calc(100% + 48px);
height: calc(100vh - 120px + 48px);
}
.community-iframe {
width: 100%;
height: 100%;
border: 0;
display: block;
background: transparent;
}
</style>