Router update to avoid if else check

pull/2199/head
Cagatay Civici 2022-02-23 15:09:16 +03:00
parent 02f4924a4a
commit 093505e8d1
3 changed files with 815 additions and 810 deletions

View File

@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-93461466-1"></script>
<script>

View File

@ -1,11 +1,10 @@
<template>
<Home v-if="$route.path === '/'" :theme="theme" @change-theme="changeTheme" />
<App v-else :theme="theme" @change-theme="changeTheme" />
<div>
<router-view></router-view>
</div>
</template>
<script>
import Home from './Home.vue';
import App from './App.vue';
import EventBus from '@/AppEventBus';
export default {
@ -45,11 +44,11 @@ export default {
cloneLinkElement.setAttribute('id', id);
});
},
},
}/*,
components: {
'App': App,
'Home': Home
}
}*/
}
</script>

File diff suppressed because it is too large Load Diff