/asta

:octopus: 3kb subset of Vue optimized for progressive enhancement.

Primary LanguageJavaScript

Asta

Simple compiler for web component

Use

import { asta } from 'asta'

asta({
	count: 0,
	add: function () {
		this.count++
	},
	tag: 'my-counter',
	view: `<div>{count}</div><button @click="add">+</button>`,
})