Fix lazy loaded Watch route

This commit is contained in:
Oliver Traber 2021-11-15 20:14:37 +01:00
parent 5876d29689
commit c032b2d294
Signed by: Bluemedia
GPG key ID: C7BA47275B086E2C

View file

@ -10,7 +10,7 @@ const routes = [
{
path: "/watch",
name: "watch",
component: import("@/views/Watch"),
component: () => import("../views/Watch.vue"),
},
];