Vue

SFC (script setup)

html
<script setup lang="ts">
import { ref } from "vue";
const n = ref(0);
</script>

<template>
  <button @click="n++">{{ n }}</button>
</template>