Alpine Components
Lazy-loaded components with slots for Alpine.js
.loading.html file.Quick Example
// Register a component
Alpine.components.register('modal', 'modal/modal.html', 'modal/modal.js');
// Use it in your HTML
<template x-component="modal" title="Custom Title">
<p>Custom body content</p>
</template>Live Demo
Loading...