mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-04 23:06:31 +08:00
50 lines
888 B
Vue
50 lines
888 B
Vue
<template>
|
|
<component v-if="pageConfig" :is="pageComponent" :key="pageConfig.id" :config="pageConfig"></component>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, inject } from 'vue';
|
|
|
|
import type Core from '@tmagic/core';
|
|
import { useComponent, useEditorDsl } from '@tmagic/vue-runtime-help';
|
|
|
|
export default defineComponent({
|
|
setup() {
|
|
const app = inject<Core | undefined>('app');
|
|
const { pageConfig } = useEditorDsl(app);
|
|
const pageComponent = useComponent('page');
|
|
|
|
return {
|
|
pageComponent,
|
|
pageConfig,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#app {
|
|
position: relative;
|
|
overflow: auto;
|
|
}
|
|
|
|
.magic-ui-container {
|
|
background-color: rgba(136, 136, 136, 0.5);
|
|
}
|
|
|
|
.action-area {
|
|
background-color: rgba(51, 153, 255, 0.5) !important;
|
|
}
|
|
</style>
|