18 lines
302 B
Svelte
18 lines
302 B
Svelte
|
<script lang="ts">
|
||
|
export let depTest = 'Success';
|
||
|
export let swaf = {};
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
p {
|
||
|
color: brown;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
|
||
|
<p>Simple dep test</p>
|
||
|
|
||
|
<p>Nested swaf call: {swaf.direct}</p>
|
||
|
<p>Nested swaf call: {swaf.route('auth')}</p>
|
||
|
<p>Nested swaf call: {swaf.route('home')}</p>
|