UsefulLinks
Computer Science
Web Development
Frontend Frameworks and Libraries
Svelte Framework
1. Introduction to Svelte
2. Svelte Component Fundamentals
3. Basic Reactivity System
4. Template Syntax and Expressions
5. Control Flow and Conditional Rendering
6. Event Handling System
7. Component Communication
8. Advanced Component Features
9. Data Binding System
10. Advanced Reactivity
11. Styling and CSS
12. Component Lifecycle
13. State Management with Stores
14. Animations and Transitions
15. SvelteKit Framework
16. Development Tools and Workflow
17. Performance Optimization
18. Deployment and Production
3.
Basic Reactivity System
3.1.
Understanding Svelte Reactivity
3.1.1.
Assignment-based Reactivity
3.1.2.
Automatic Dependency Tracking
3.1.3.
Reactivity Limitations
3.2.
Reactive Variables
3.2.1.
Variable Declaration
3.2.2.
Assignment Triggers
3.2.3.
Primitive vs Reference Types
3.3.
Props System
3.3.1.
Declaring Props with export let
3.3.2.
Prop Types and Validation
3.3.3.
Default Prop Values
3.3.4.
Prop Destructuring
3.4.
Basic Data Binding
3.4.1.
One-way Data Flow
3.4.2.
Prop Passing Syntax
3.4.3.
Prop Spreading
Previous
2. Svelte Component Fundamentals
Go to top
Next
4. Template Syntax and Expressions