Skip to content

Commit

Permalink
feat(spinners): add menu item
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-moldovan committed Jan 3, 2018
1 parent 86c3bdd commit b52d3f7
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/components/ui/spinners/Spinners.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<template>
<div class="row">
<vuestic-widget :headerText="$t('spinners.title')" class="col-sm-12">
content
</vuestic-widget>
</div>
</template>

<script>
export default {
}
</script>

<style scoped>
</style>
4 changes: 4 additions & 0 deletions src/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@
"search": "Icon search",
"title": "Icons"
},
"spinners": {
"title": "Epic Spinners"
},
"language": {
"english": "English",
"spanish": "Spanish"
Expand All @@ -128,6 +131,7 @@
"formWizards": "Form Wizards",
"grid": "Grid",
"icons": "Icons",
"spinners": "Epic Spinners",
"login": "Login",
"maps": "Maps",
"modals": "Modals",
Expand Down
8 changes: 8 additions & 0 deletions src/store/modules/menu/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ export default {
}
]
},
{
name: 'Epic Spinners',
path: '/ui/spinners',
component: lazyLoading('ui/spinners/Spinners'),
meta: {
title: 'menu.spinners'
}
},
{
name: 'Grid',
path: '/ui/grid',
Expand Down

0 comments on commit b52d3f7

Please sign in to comment.