mirror of
https://github.com/KevinMidboe/leifsopplevelser.git
synced 2025-12-08 20:38:46 +00:00
Lots of changes. Added footer, calendar is more interactive and now we can route to specific adventures and fields become populated. Started upload progress of images and 404 page.
This commit is contained in:
16
src/App.vue
16
src/App.vue
@@ -1,17 +1,16 @@
|
||||
<template>
|
||||
<div id="app" class="container">
|
||||
<div id="app">
|
||||
|
||||
<router-view />
|
||||
|
||||
<Popover class="popup" v-if="popoverState"></Popover>
|
||||
|
||||
<Popover class="popup" v-if="popoverState" v-bind:class="[popoverState ? 'blur' : '', 'bk']"></Popover>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Vue from 'vue'
|
||||
import Popover from '@/components/Popover'
|
||||
import routes from '@/routes'
|
||||
import Popover from '@/components/Popover'
|
||||
import { mapGetters, mapActions } from 'vuex'
|
||||
|
||||
export default {
|
||||
@@ -25,4 +24,13 @@ export default {
|
||||
|
||||
<style lang="scss">
|
||||
@import './scss/main.scss';
|
||||
|
||||
.bk {
|
||||
transition: all 2s ease-out;
|
||||
}
|
||||
|
||||
.blur {
|
||||
// filter: blur(2px);
|
||||
opacity: 1;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user