I’m building an app as a way to learn Svelte. It’s all functioning perfectly, but when I look at it in Svelte DevTools, the props on components don’t appear, although their values appear in the state as an array. I guess I must be doing something wrong, but can anyone tell me what?
The screenshot shows the app with the Artist
component loaded. I would expect it to have an artistId
prop with the value 1
, but it doesn’t.
The page()
function in the code is from Page.js which I’m using for routing.
JavaScript
x
63
63
1
// app.js
2
3
import page from 'page'
4
5
import App from './views/App.svelte'
6
7
const app = new App({
8
target: document.body,
9
props: {
10
artistId: null,
11
route: null,
12
},
13
})
14
15
function artist (ctx) {
16
const artistId = ctx.params.artistId
17
18
app.$set({
19
route: 'artist',
20
artistId: artistId,
21
})
22
}
23
24
page('/artist/:artistId', artist)
25
page()
26
27
// App.svelte
28
29
<script>
30
import Artist from './Artist.svelte'
31
import Head from '../parts/Head.svelte' // sets page titles
32
import Home from './Home.svelte'
33
import HomeLink from '../parts/HomeLink.svelte' // navigation
34
35
export let artistId
36
export let route
37
</script>
38
39
<HomeLink route={route} />
40
41
{#if route === 'artist'}
42
<Artist artistId={artistId} />
43
{:else}
44
<Home />
45
{/if}
46
47
// Artist.svelte
48
49
<script>
50
import { onMount } from 'svelte'
51
import { pageName } from '../stores.js'
52
53
export let artistId
54
55
let artistName
56
57
onMount(async () => {
58
// fetches various details from API, sets artistName etc
59
60
$pageName = `Artist details: ${artistName}` // used by Head.svelte
61
})
62
</script>
63
Advertisement
Answer
This is a known issue — it should be fixed by https://github.com/sveltejs/svelte/pull/3822