Fix static content for RMO

This commit is contained in:
Eli Ribble 2026-04-03 15:24:19 +00:00
parent e8db3de122
commit 4f6369fa27
No known key found for this signature in database
3 changed files with 12 additions and 9 deletions

View file

@ -1,3 +1,11 @@
<template>
<div id="app">
<h1>{{ message }}</h1>
<p>Count: {{ count }}</p>
<button @click="increment">Increment</button>
</div>
</template>
<script setup lang="ts">
import { ref, computed } from "vue";
import { useHead } from "@vueuse/head";
@ -10,6 +18,7 @@ const increment = (): void => {
};
// Reactive head management
/*
useHead({
title: computed(() => `Count: ${count.value} - My Vue App`),
link: [
@ -20,12 +29,5 @@ useHead({
},
],
});
*/
</script>
<template>
<div id="app">
<h1>{{ message }}</h1>
<p>Count: {{ count }}</p>
<button @click="increment">Increment</button>
</div>
</template>

View file

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/static/ico/favicon-sync.ico" type="image/x-icon" />
<link rel="icon" href="/static/ico/favicon-rmo.ico" type="image/x-icon" />
<title>Report Mosquitoes Online</title>
</head>
<body>

1
vite/rmo/static Symbolic link
View file

@ -0,0 +1 @@
../../static