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
9c0db84788
svelte
/
test
/
runtime
/
samples
/
reactive-values-self-depend...
/
main.svelte
9 lines
104 B
Raw
Blame
History
<
script
>
export
let
count
=
0
;
$
:
if
(
count
>=
10
)
{
count
=
9
;
}
</
script
>
<
p
>
count:
{
count
}
</
p
>
Reference in new issue
View Git Blame
Copy Permalink