Messy transition to Vue

This commit is contained in:
2023-05-02 18:41:31 -07:00
parent aed2080b53
commit b0c3eaf33d
35 changed files with 4894 additions and 22 deletions
@@ -0,0 +1,20 @@
<script setup lang="ts">
defineProps<{
msg: string
}>()
</script>
<template>
<div class="greetings">
<h1 class="green">{{ msg }}</h1>
<h3>
Youve successfully created a project with
<a href="https://vitejs.dev/" target="_blank" rel="noopener">Vite</a> +
<a href="https://vuejs.org/" target="_blank" rel="noopener">Vue 3</a>. What's next?
</h3>
</div>
</template>
<style scoped>
</style>