Skip to content

Commit

Permalink
Robo Komponente Erstellt
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Areesanan committed Oct 23, 2022
1 parent 184c407 commit 0967404
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions components/RoboComp.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<script setup lang="ts">
// example counter component
let count = $ref(0)
</script>

<template>
<h2>Hello2

</h2>

<button class="p-4 w-full bg-red border" @click="count++">{{ count }}</button>

</template>

0 comments on commit 0967404

Please sign in to comment.