cs2.tinysites.com/app.vue

28 lines
780 B
Vue
Raw Normal View History

2025-02-13 01:33:37 +00:00
<script setup>
useHead({
htmlAttrs: [
{ lang: 'en'}
],
link: [
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' },
{ rel: 'icon', sizes: '32x32', href: '/favicon-32x32.png' },
{ rel: 'icon', sizes: '16x16', href: '/favicon-16x16.png' },
{ rel: 'manifest', href: '/site.webmanifest' },
{ rel: 'mask-icon', href: '/safari-pinned-tab.svg', color: '#14c670' },
],
meta: [
{ name: 'msapplication-TileColor', content: '#042816' },
{ name: 'theme-color', content: '#ffffff' }
],
script: [
2025-02-13 01:48:09 +00:00
{ defer: 'true', 'data-domain': 'cs.tinysites.com', src: 'https://pa.inspin.io/js/latest.js' }
2025-02-13 01:33:37 +00:00
]
})
</script>
<template>
<NuxtLayout>
<NuxtPage/>
</NuxtLayout>
</template>