# Mobile Menu
We build a component named
<mobile-menu></mobile-menu>
and assures
you that on smaller devices like phone, tablet and so on you will
have the items from the .md-toolbar-section-
present
on your collapsible menu. This component is located in
src/layout/
. The component have only one attribute
called nav-mobile-section
.
Now in case you have items inside the
.md-toolbar-section-
you can activate the component
by simply set the value of the attribute
nav-mobile-section
to true
and put the
items that you want like in the below example, by default this
attibute have the value set to false
:
Inside your component
<mobile-menu></mobile-menu>
you will have
the following items:
<mobile-menu nav-mobile-section="true">
<md-list-item href="javascript:void(0)">
<p>Link</p>
</md-list-item>
<md-list-item href="javascript:void(0)">
<p>Link</p>
</md-list-item>
</mobile-menu>