mirror of
https://github.com/KevinMidboe/leifsopplevelser.git
synced 2025-12-08 20:38:46 +00:00
So much has happend. A lot of cleanup, now popover gets the full album list and can iterate over it manually. We have a store. Images on upload have popover and are previewed under upload button.
This commit is contained in:
30
src/App.vue
30
src/App.vue
@@ -1,28 +1,26 @@
|
||||
<template>
|
||||
<div id="app" class="container">
|
||||
|
||||
<router-view />
|
||||
|
||||
<Popover class="popup" v-if="popoverState"></Popover>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Vue from 'vue'
|
||||
import Home from '@/components/Home.vue'
|
||||
import routes from '@/routes'
|
||||
import Vue from 'vue'
|
||||
import Popover from '@/components/Popover'
|
||||
import routes from '@/routes'
|
||||
import { mapGetters, mapActions } from 'vuex'
|
||||
|
||||
export default {
|
||||
name: 'App',
|
||||
components: {
|
||||
Home
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
loaded: false
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
}
|
||||
}
|
||||
export default {
|
||||
name: 'App',
|
||||
components: { Popover },
|
||||
computed: mapGetters([
|
||||
'popoverState',
|
||||
]),
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
|
||||
Reference in New Issue
Block a user