1.0.1 • Published 11 months ago
saturdayjs v1.0.1
saturdayJS
- saturdayJS web library. Just try.
<script src="https://cdn.jsdelivr.net/npm/saturdayjs@1.0.0/saturdayjs.min.js"></script>
Live: https://madhanmaaz.github.io/saturdayJS/
Counter app
<script src="./saturday.js"></script>
<template name="Counter">
<script>
var state = useProxy({
count: 0
})
defineEvents({
handler() {
state.count++
}
})
</script>
<button onclick="handler">Count [%- count %]</button>
</template>