Fix static content for RMO
This commit is contained in:
parent
e8db3de122
commit
4f6369fa27
3 changed files with 12 additions and 9 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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
1
vite/rmo/static
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../static
|
||||
Loading…
Add table
Add a link
Reference in a new issue