You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/css/samples/omit-scoping-attribute-mult.../input.svelte

17 lines
217 B

<script>
export let unknown1 = 'root';
export let unknown2 = 'whatever';
</script>
<style>
.root p {
color: red;
}
</style>
<div class={unknown1}>
<section class={unknown2}>
<p>hello</p>
</section>
</div>