17 lines
263 B
Vue
17 lines
263 B
Vue
<template>
|
|
<UApp>
|
|
<NuxtPage />
|
|
</UApp>
|
|
</template>
|
|
|
|
<style>
|
|
@import "assets/css/main.css";
|
|
</style>
|
|
|
|
<script lang="ts" setup>
|
|
useHead({
|
|
title: "Door alarm",
|
|
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
|
|
})
|
|
</script>
|