This website requires JavaScript.
Explore
Help
Sign In
mirrors
/
svelte
Watch
0
Star
0
Fork
0
You've already forked svelte
mirror of
https://github.com/sveltejs/svelte.git
synced
2024-12-01 17:30:59 +01:00
Code
Issues
Releases
Wiki
Activity
dfb661ec0d
svelte
/
test
/
runtime
/
samples
/
transition-js-nested-component
/
main.html
9 lines
97 B
HTML
Raw
Normal View
History
Unescape
Escape
nested component transitions
2018-05-12 22:48:05 +02:00
<
script
>
import Widget from './Widget.html';
Implement reactive assignments (#1839) This also includes elements of RFCs 2 and 3
2018-12-16 01:18:03 +01:00
export let x;
<
/
script
>
{#if x}
<
Widget
/
>
{/if}
Copy Permalink