Vue 3 SSR

Server-rendered by Esmx on Vite, then hydrated by Vue 3 in place. The counter below works after hydration.

<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
Vue 3 Vite 8SSR

source · examples/ssr-vite-vue/src/app.vue