14 lines
382 B
JavaScript
14 lines
382 B
JavaScript
import CrownIcon from './components/CrownIcon.svelte';
|
|
|
|
// Expose a function to mount the CrownIcon component globally
|
|
// This allows Django templates to easily initialize Svelte components.
|
|
window.mountCrownIcon = (selector, props) => {
|
|
const target = document.querySelector(selector);
|
|
if (target) {
|
|
new CrownIcon({
|
|
target: target,
|
|
props: props,
|
|
});
|
|
}
|
|
};
|