|
|
|
|
|
by PlkMarudny
1182 days ago
|
|
I use Svelte for all the project under my supervision and the biggest problem I encountered is that functions defined in a component <script> section are all executed when the component is created. This is painful sometimes, especially for new team members. Never used
```
{#await}
```
SvelteKit works. Reactivity is not a problem, but we use stores a lot, however (means global variables of a kind?). |
|