Vue Server Component

GitHub(Loading...)
[mounted: 0]

Highlight (Shiki)

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

<template>
  <button class="client-btn" @click="count++">
    client sfc: {{ count }}
  </button>
</template>