Добавлена маршрутизация, выбор вида списка: Авторы, Серии, Книги

This commit is contained in:
Book Pauk
2022-10-24 20:51:35 +07:00
parent f582c34a72
commit d7c1a83785
4 changed files with 65 additions and 15 deletions

View File

@@ -5,6 +5,9 @@ const Search = () => import('./components/Search/Search.vue');
const myRoutes = [
['/', Search],
['/author', Search],
['/series', Search],
['/book', Search],
['/:pathMatch(.*)*', null, null, '/'],
];