SFC (script setup)
<script setup lang="ts">
import { ref } from "vue";
const n = ref(0);
</script>
<template>
<button @click="n++">{{ n }}</button>
</template>
<script setup lang="ts">
import { ref } from "vue";
const n = ref(0);
</script>
<template>
<button @click="n++">{{ n }}</button>
</template>