All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 8s
14 lines
369 B
Vue
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>
|