vue-ecom-widget
Version:
Embeddable Vue e-commerce carousel widget
19 lines (17 loc) • 527 B
HTML
<html lang="en">
<head><meta charset="UTF-8"/><title>Widget Production Preview</title></head>
<body>
<h1>Widget Production Preview</h1>
<div id="my-ecom-widget" style="max-width:900px;margin:40px auto"></div>
<!-- loads widget.min.js which now does: window.EcomWidget = { init } -->
<script src="widget.min.js"></script>
<script>
window.EcomWidget.init({
selector: '#my-ecom-widget',
category: 'electronics',
visibleCount: 5
})
</script>
</body>
</html>