File size: 774 Bytes
89ce340 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
<template>
<div class="mobile">
<component
:is="currentComponent"
:changeMode="changeMode"
></component>
</div>
</template>
<script lang="ts" setup>
import { computed, ref } from 'vue'
import type { Mode } from '@/types/mobile'
import MobileEditor from './MobileEditor/index.vue'
import MobilePlayer from './MobilePlayer.vue'
import MobilePreview from './MobilePreview.vue'
const mode = ref<Mode>('preview')
const changeMode = (_mode: Mode) => mode.value = _mode
const currentComponent = computed(() => {
const componentMap = {
'editor': MobileEditor,
'player': MobilePlayer,
'preview': MobilePreview,
}
return componentMap[mode.value] || null
})
</script>
<style lang="scss" scoped>
.mobile {
height: 100%;
}
</style> |