Drop unused words page

This commit is contained in:
2019-03-24 11:56:46 +07:00
parent 6c073db256
commit ae6997ab26
3 changed files with 2 additions and 23 deletions

View File

@@ -76,11 +76,6 @@ export default {
title: 'Статьи',
route: '/articles',
},
{
icon: 'extension',
title: 'Учить слова',
route: '/words',
},
{
icon: 'account_circle',
title: 'Мой профиль',

View File

@@ -30,11 +30,6 @@ const router = new Router({
props: true,
component: () => import(/* webpackChunkName: "articles/article_part" */ '@/views/ArticlePart'),
},
{
path: '/words',
name: 'words',
component: () => import(/* webpackChunkName: "words" */ '@/views/Words'),
},
{
path: '/profile',
name: 'profile',
@@ -68,6 +63,6 @@ router.beforeEach((to, from, next) => {
return next();
})
})
});
export default router;

View File

@@ -1,11 +0,0 @@
<template>
<div>
<h2>Words</h2>
</div>
</template>
<script>
export default {
};
</script>