We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1de58d9 commit ca0e8a3Copy full SHA for ca0e8a3
test/runtime/samples/slot-names/Nested.svelte
@@ -3,4 +3,6 @@
3
<slot name="-header2_" />
4
<slot name="3header" />
5
<slot name="_header4" />
6
+ <slot name="header-5" />
7
+ <slot name="header&5" />
8
</div>
test/runtime/samples/slot-names/_config.js
@@ -5,6 +5,8 @@ export default {
<h2 slot="-header2_">Header 2</h2>
<h3 slot="3header">Header 3</h3>
<h4 slot="_header4">Header 4</h4>
+ <h5 slot="header-5">Header 5</h5>
9
+ <h5 slot="header&5">Header 5b</h5>
10
11
`
12
};
test/runtime/samples/slot-names/main.svelte
@@ -7,4 +7,6 @@
</Nested>
0 commit comments