From ac9f1ba2aca43d38d67604a4f6e77c5b29a670af Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Sun, 7 Mar 2021 13:30:05 +0100 Subject: [PATCH] routing import fix ref #10 --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index bd77f66..188d3ff 100644 --- a/src/main.js +++ b/src/main.js @@ -26,7 +26,7 @@ const Home = import('./components/Home.vue'); const Imprint = import('./components/Imprint.vue'); const Privacy = import('./components/Privacy.vue'); const Register = import('./components/Register.vue'); -const Profile = import('./components/Profile.vue'); +const Profile = () => import('./components/Profile.vue'); // let routes = [ { path: '/', component: EnvError } ]; if (typeof config !== 'undefined') {