📝 Edit page
➕ Add page
petite-vue
Byline:
6kb subset of Vue optimized for progressive enhancement
Key links
Intended for adding a sprinkling of Vue to a page without all the overhead but loading only some of the Vue code.
See also Preact as a reduced form of React.
Example
<script src="https://unpkg.com/petite-vue" defer init></script>
<!-- anywhere on the page -->
<div v-scope="{ count: 0 }">
{{ count }}
<button @click="count++">inc</button>
</div>
See Examples in the repo.