跳至主要内容

恭喜!如果你已经完成了本教程的所有内容,那么你现在可以认为自己是一位 Svelte 和 SvelteKit 专家了。

你可以使用 Svelte CLI 在自己的机器上开始构建应用程序。

npx sv create

Svelte 和 SvelteKit 将继续发展,本教程也将随之发展。请定期查看更新。

要了解 Svelte 世界的发展动态,请加入我们的 Discord 服务器 svelte.dev/chat 并关注 Twitter 上的 Svelte Society。我们非常高兴欢迎你加入 Svelte 社区!

在 GitHub 上编辑此页面

上一页 下一页
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>