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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue