fix bug list circuits and transactionsenabled

This commit is contained in:
Paolo Arena
2022-09-24 20:21:29 +02:00
parent bc2080c42c
commit 201d148e31
29 changed files with 299 additions and 332 deletions

View File

@@ -0,0 +1,38 @@
import { defineComponent, ref, computed, PropType, toRef, onMounted, onBeforeUnmount } from 'vue'
import { useGlobalStore } from '@store/globalStore'
import { useI18n } from '@/boot/i18n'
import { tools } from '@store/Modules/tools'
import { LandingFooter, Logo } from '@components'
import { IMyPage } from 'model'
export default defineComponent({
name: 'CShowContentPage',
components: {Logo, LandingFooter},
props: {
path: {
type: String,
required: true,
},
},
setup(props) {
const { t } = useI18n();
const rec = ref<IMyPage | null>(null)
const globalStore = useGlobalStore()
async function created() {
rec.value = await globalStore.loadPage(props.path)
}
created()
return {
t,
tools,
rec,
}
},
})