2019-04-28 19:11:57 -05:00
|
|
|
<template>
|
|
|
|
<component :is="'x-' + value.type" :value="value" :page="page" :script="script" :key="value.id" :h="h"/>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import XText from './page.text.vue';
|
|
|
|
import XSection from './page.section.vue';
|
|
|
|
import XImage from './page.image.vue';
|
|
|
|
import XButton from './page.button.vue';
|
|
|
|
import XInput from './page.input.vue';
|
|
|
|
import XSwitch from './page.switch.vue';
|
2019-04-29 16:40:02 -05:00
|
|
|
import XIf from './page.if.vue';
|
2019-04-28 19:11:57 -05:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
2019-04-29 16:40:02 -05:00
|
|
|
XText, XSection, XImage, XButton, XInput, XSwitch, XIf
|
2019-04-28 19:11:57 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
value: {
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
script: {
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
page: {
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
h: {
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|