🎉 Inits repo

This commit is contained in:
Daniel Svitan
2023-05-16 16:02:07 -07:00
parent faf1816b68
commit b8c658374f
11 changed files with 1066 additions and 166 deletions
+12
View File
@@ -0,0 +1,12 @@
<template>
<div class="flex items-center justify-center flex-col w-page h-page gap-2">
<p class="text-blue-800">You clicked {{ count }} times</p>
<button @click="() => count++" class="text-2xl">+</button>
</div>
</template>
<script setup lang="ts">
import { ref } from "vue";
const count = ref(0);
</script>