cs.inspin.io/app.vue

28 lines
761 B
Vue

<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: '#5bbad5' },
],
meta: [
{ name: 'msapplication-TileColor', content: '#4c70ff' },
{ name: 'theme-color', content: '#ffffff' }
],
script: [
{ defer: 'true', 'data-domain': 'inspin.io', src: 'https://pa.inspin.io/js/latest.js' }
]
})
</script>
<template>
<main>
<NuxtPage/>
</main>
</template>