All wines page

This commit is contained in:
Kasper Rynning-Tønnesen
2020-02-07 17:01:12 +01:00
parent 1d6267064b
commit 2ad54103b1
5 changed files with 255 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
import VinlottisPage from "@/components/VinlottisPage";
import GeneratePage from "@/components/GeneratePage";
import TodaysPage from "@/components/TodaysPage";
import AllWinesPage from "@/components/AllWinesPage";
const routes = [
{
@@ -15,6 +16,10 @@ const routes = [
path: "/dagens",
component: TodaysPage
},
{
path: "/viner",
component: AllWinesPage
},
{
path: "/login",
component: resolve => require(["@/components/LoginPage"], resolve)