Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Svelte 3 Up and Running

You're reading from   Svelte 3 Up and Running A fast-paced introductory guide to building high-performance web applications with SvelteJS

Arrow left icon
Product type Paperback
Published in Aug 2020
Publisher Packt
ISBN-13 9781839213625
Length 168 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Alessandro Segala Alessandro Segala
Author Profile Icon Alessandro Segala
Alessandro Segala
Arrow right icon
View More author details
Toc

Svelte templates and reactivity

Let's start by creating our first components and explore how Svelte deals with templates and reactive statements.

Naming conventions

Names for Svelte components always begin with an uppercase letter. This makes it possible to distinguish Svelte components from HTML tags, which always start with a lowercase letter. For example, Input refers to a Svelte component, while input is the usual HTML tag.

Of particular importance when building a full web application with Svelte is that the root component is conventionally called App.

As for organizing your source files, in this book we'll be storing Svelte component files in the src/components/ folder, in a file carrying the same name as the component. For example, the App component will be located in src/components/App.svelte (recall from Chapter 2, Scaffolding Your Svelte Project, how each .svelte file contains one—and only one—component).

Renderer.svelte component

...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at AU $24.99/month. Cancel anytime