Skip to main content
基本 Svelte
介绍
反应性
属性
逻辑
事件
绑定
类和样式
动作
转换
高级 Svelte
高级反应性
重用内容
运动
高级绑定
高级转换
上下文 API
特殊元素
<script module>
后续步骤
基本 SvelteKit
介绍
路由
加载数据
标题和 cookie
共享模块
表单
API 路由
$app/state
错误和重定向
高级 SvelteKit
钩子
页面选项
链接选项
高级路由
高级加载
环境变量
结论

恭喜!如果你已经完成了本教程的全部内容,那么你现在可以认为自己是 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>