| <template> |
| <q-list padding class="menu-list"> |
| <q-item clickable v-ripple> |
| <q-item-section avatar> |
| <q-icon name="inbox" /> |
| </q-item-section> |
| |
| <q-item-section> Inbox </q-item-section> |
| </q-item> |
| |
| <q-item active clickable v-ripple> |
| <q-item-section avatar> |
| <q-icon name="star" /> |
| </q-item-section> |
| |
| <q-item-section> Star </q-item-section> |
| </q-item> |
| |
| <q-item clickable v-ripple> |
| <q-item-section avatar> |
| <q-icon name="send" /> |
| </q-item-section> |
| |
| <q-item-section> Send </q-item-section> |
| </q-item> |
| |
| <q-item clickable v-ripple> |
| <q-item-section avatar> |
| <q-icon name="drafts" /> |
| </q-item-section> |
| |
| <q-item-section> Drafts </q-item-section> |
| </q-item> |
| </q-list> |
| </template> |
| <script> |
| export default { |
| name: 'MainSidebar', |
| data() { |
| return {} |
| }, |
| methods: {} |
| } |
| </script> |