File size: 295 Bytes
c992d82 |
1 2 3 4 5 6 7 8 9 10 11 12 |
<script>
export let value = {
visible: true,
home_page_title: "Home"
};
</script>
<!-- Navbar component examples are not displayed as it's a configuration component -->
<div style="display: none;">
Navbar config: visible={value.visible}, home_page_title="{value.home_page_title}"
</div>
|