Dominik Milacher 85d080ab05
All checks were successful
Build and deploy updated apps / Build & deploy (push) Successful in 2m12s
Add panoramablick implementation
2025-06-13 23:11:04 +02:00

39 lines
926 B
Vue

<script setup lang="ts">
/* Inject the external assets into <head> */
useHead({
link: [
{
rel: 'stylesheet',
href: 'https://mainframe.capcorn.net/ressourcen/newUI/css/capcorn.css'
}
],
script: [
{
src: 'https://mainframe.capcorn.net/ressourcen/newUI/js/jquery.js',
tagPosition: 'bodyClose', // load at the end of <body>
defer: true // optional
},
{
src: 'https://mainframe.capcorn.net/ressourcen/newUI/js/capcorn.js',
tagPosition: 'bodyClose',
defer: true
}
]
})
</script>
<template>
<AppFlatSection>
<!-- SSR-safe: iframe appears only in the browser -->
<ClientOnly>
<iframe
id="iframeCapCorn"
src="https://www.capcorn.net/MasterReq?MB=1487&FL=17&LG=0"
frameborder="0"
width="100%"
scrolling="auto"
/>
</ClientOnly>
</AppFlatSection>
</template>