恭喜!如果你已经完成了本教程的全部内容,那么你现在可以认为自己是 Svelte 和 SvelteKit 专家了。
¥Congratulations! If you’ve made it the entire way through this tutorial, you can now consider yourself a Svelte and SvelteKit expert.
你可以使用 Svelte CLI 在自己的机器上开始构建应用:
¥You can start building apps on your own machine with Svelte CLI:
npx sv create
Svelte 和 SvelteKit 将继续发展,本教程也将继续发展。定期检查更新。
¥Svelte and SvelteKit will continue to evolve, and so will this tutorial. Check back periodically for updates.
为了跟上 Svelte 世界的发展,请加入我们在 svelte.dev/chat 的 Discord 服务器,并在 BlueSky 上关注 Svelte 社会。我们非常高兴欢迎你加入 Svelte 社区!
¥To keep up with developments in the Svelte world, join our Discord server at svelte.dev/chat and follow Svelte Society on BlueSky. We’re so happy to welcome you to the Svelte community!
上一页 下一页
1
2
3
4
5
6
7
8
9
10
11
12
<span>the end</span>
<style>
span {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 4em;
}
</style>