UNPKG

ebm_customer_meal_app

Version:

*Looking for a shareable component template? Go here --> [sveltejs/component-template](https://github.com/sveltejs/component-template)*

16 lines (11 loc) 277 B
import App from './App.svelte' const target = document.querySelector('#customer-app') const currentCustomer = target.getAttribute('data-customer') const app = new App({ target: target, props: { customer: currentCustomer, }, }) window.app = app export default app