add first test component

This commit is contained in:
Frieder Schlesier 2023-02-12 13:53:05 +01:00
parent eca34bb077
commit a28803d2e3
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
<script setup lang="ts">
import { ref } from 'vue'
defineProps<{ msg: string }>()
const count = ref(0)
</script>
<template>
<h1>{{ msg }}</h1>
<div class="card">
<input class="text" placeholder="Titel" />
<p>
Edit
<code>components/EventNew.vue</code> to test HMR
</p>
</div>
</template>
<style scoped>
.read-the-docs {
color: #888;
}
</style>