Web Editor home made

This commit is contained in:
Surya Paolo
2022-11-17 08:10:43 +01:00
parent 711f1b515d
commit 495abc33be
77 changed files with 1742 additions and 1771 deletions

View File

@@ -1,54 +0,0 @@
import { defineComponent, ref, onMounted, watch, computed } from 'vue'
import { useGlobalStore } from '@store/globalStore'
import { useRoute } from 'vue-router'
import { useUserStore } from '@store/UserStore'
import { Logo } from '@/components/logo'
import { LandingFooter } from '@/components/LandingFooter'
import { CMyPage } from '@/components/CMyPage/index'
import { tools } from '@src/store/Modules/tools'
import { static_data } from '@src/db/static_data'
import { toolsext } from '@src/store/Modules/toolsext'
import { Screen } from 'quasar'
import { CCardCarousel, CEventsCalendar, CMyElem, COpenStreetMap } from '@components'
import MixinBase from '@src/mixins/mixin-base'
import { firstimagehome } from '@src/db/static_data'
import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'home_kolibrilab',
components: { Logo, LandingFooter, CMyPage, CMyElem },
setup() {
const userStore = useUserStore()
const globalStore = useGlobalStore()
const { setValDb, getValDb } = MixinBase()
function getheightgallery() {
if (tools.isMobile())
return '400px'
else
return '600px'
}
function created() {
//
}
created()
return {
tools,
toolsext,
static_data,
getheightgallery,
getValDb,
globalStore,
}
},
})

View File

@@ -1,18 +0,0 @@
<template>
<q-page>
<CMyPage title="Home">
<span v-for="(myelem, ind) in globalStore.myelems" :key="ind">
<CMyElem v-if="myelem.active" :myelem="myelem">
</CMyElem>
</span>
</CMyPage>
</q-page>
</template>
<script lang="ts" src="./home_kolibrilab.ts">
</script>
<style lang="scss" scoped>
@import './home_kolibrilab.scss';
</style>