
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@phila/phila-ui-mobile-nav
Advanced tools
The Mobile Navigation only shows on screens smaller than 768px.
The Mobile Navigation links can be added via props using the Navigation Links format.
<mobile-nav
:links="myMobileNavLink"
/>
Or the links can be added using the default slot. The default slot accepts an unordered list of links.
<mobile-nav>
<ul>
<li>
<a href="/home">Home</a>
</li>
<li>
<a href="/about">About</a>
</li>
</ul>
</mobile-nav>
The mobile navigation links can be nested down two levels.
When using props, use the key submenu to indicate nesting. The submenu key takes an array of Navigation Links.
<mobile-nav
:links="myMobileNavNestedLinks"
/>
myMobileNavNestedLinks: [
{
text: "Parent Link 1",
submenu: [
{
href: "/nested-link-1-1",
text: "Nested Link 1.1"
},
{
href: "/nested-link-1-2",
text: "Nested Link 1.2"
}
]
},
{
text: "Parent Link 2",
submenu: [
{
href: "/nested-link-2-1",
text: "Nested Link 2.1"
},
{
href: "/nested-link-2-2",
text: "Nested Link 2.2"
}
]
}
]
When using slots, simply nest the unordered list.
<mobile-nav>
<ul>
<li>
<a href="#">Parent Link 1</a>
<ul>
<li>
<a href="/nested-link-1-1">Nested Link 1.1</a>
</li>
<li>
<a href="/nested-link-1-2">Nested Link 1.2</a>
</li>
</ul>
</li>
</ul>
</mobile-nav>
FAQs
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.