39 lines
739 B
Vue

<template>
<magic-ui-container class="magic-ui-page" :data-tmagic-id="config.id" :config="config"></magic-ui-container>
</template>
<script lang="ts">
import { defineComponent, type PropType } from 'vue-demi';
import type { MPage } from '@tmagic/schema';
import { useApp } from '@tmagic/vue-runtime-help';
export default defineComponent({
props: {
config: {
type: Object as PropType<MPage>,
required: true,
},
model: {
type: Object,
default: () => ({}),
},
},
setup(props) {
const refresh = () => {
window.location.reload();
};
const { app } = useApp({
config: props.config,
methods: { refresh },
});
return {
app,
};
},
});
</script>