mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 13:09:03 +08:00
9 lines
132 B
Svelte
9 lines
132 B
Svelte
<script>
|
|
let pageTitle = "";
|
|
$effect(() => {
|
|
pageTitle = document.title;
|
|
});
|
|
</script>
|
|
|
|
<p>Page title is: {pageTitle}</p>
|