Vue 3 SSR
<script setup lang="ts">
import { ref } from 'vue'
const count = ref(0)
</script>
<template>
<p>Count: {{ count }}</p>
<button @click="count++">+</button>
<button @click="count--">−</button>
</template>Count
0
source · examples/ssr-rsbuild-vue/src/app.vue