Dominik Milacher 0dc24c4db7
Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 50s
Extend ux layer and overhaul panoramablick-saalbach.at
2025-11-21 21:17:52 +01:00

50 lines
1.0 KiB
Vue

<script setup lang="ts">
useSeoLinking()
const { l } = useContentInjected()
useSeoMeta({
title: () => l.value.meta.title,
description: () => l.value.meta.description,
})
useHead({
script: [
{
src: 'https://mainframe.capcorn.net/ressourcen/newUI/js/jquery.js',
defer: true,
},
{
src: 'https://mainframe.capcorn.net/ressourcen/newUI/js/capcorn.js',
defer: true,
},
],
link: [
{
rel: 'stylesheet',
href: 'https://mainframe.capcorn.net/ressourcen/newUI/css/capcorn.css',
},
],
})
// LG=0 für deutsch, LG=1 für englisch
// MP = maximale personenzahl
// maxZim
</script>
<template>
<XScaffoldGridPage>
<AppSection mode="card">
<ClientOnly>
<iframe
id="iframeCapCorn"
src="https://www.capcorn.net/Query?MB=1487&FL=17&LG=0&maxZim=3&zimDe=Apartment&zimEn=Apartment&showVpf=0"
frameborder="0"
width="100%"
scrolling="auto"
>
</iframe>
</ClientOnly>
</AppSection>
</XScaffoldGridPage>
</template>