This website works better with JavaScript.
欢迎来到马士兵代码仓库
Sign In
msb-public
/
svelte
mirror of
https://github.com/sveltejs/svelte
Watch
1
Star
0
Code
Issues
Projects
Releases
Wiki
Activity
a31fea139b
svelte
/
test
/
js
/
samples
/
if-block-no-update
/
input.svelte
9 lines
90 B
Raw
Normal View
History
Unescape
Escape
update parser and js tests
6 years ago
<
script
>
export let foo;
<
/
script
>
remove v1 snapshot tests
7 years ago
{
#if
foo
}
dont update static subtrees, even with a noop
8 years ago
<
p
>
foo!
<
/
p
>
remove v1 snapshot tests
7 years ago
{
:
else
}
dont update static subtrees, even with a noop
8 years ago
<
p
>
not foo!
<
/
p
>
remove v1 snapshot tests
7 years ago
{
/if
}