fix bug list circuits and transactionsenabled
This commit is contained in:
38
src/components/CShowContentPage/CShowContentPage.ts
Executable file
38
src/components/CShowContentPage/CShowContentPage.ts
Executable 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,
|
||||
}
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user