Files
agologum/client/src/components/Header.vue
Blitblank 533571859f
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 8s
some comments for templating
2026-03-05 23:15:46 -06:00

14 lines
369 B
Vue

<!-- you know what components are :D -->
<!-- though I do miss angular's support for separating the file ( though i guess its technically possible in vue but it gets disorganized fast ) -->
<script setup lang="ts">
import { ref } from 'vue'
const count = ref(0)
</script>
<template>
<button @click="count++">You clicked me {{ count }} times.</button>
</template>