Custom logic
Event handlers to call external APIs and libraries
<script type="module">
import { createApp } from "https://unpkg.com/petite-vue?module"
createApp({
addToCart(productId) {
// call platform specific add to cart API
}
}).mount("#$divId")
</script>Product selection for bundle creation and related total
Last updated
Was this helpful?