Ultra Lightweight
Only ~6kb gzipped. No build step required. Just drop it in and go. Perfect for "sprinkling" on existing pages.
A lightweight, Vue-compatible library optimized for "sprinkling" interactions on server-rendered pages (Django, Laravel, Rails, and more).

pocket-vue is a fork of petite-vue, providing a modern, maintained solution for developers who want the power of Vue's reactivity without the overhead of a full Single Page Application (SPA).
<!-- No build step required! -->
<script src="https://unpkg.com/pocket-vue" defer init></script>
<div v-scope="{ count: 0 }">
{{ count }}
<button @click="count++">Increment</button>
</div>