2019-04-30 06:40:02 +09:00
|
|
|
<template>
|
2021-01-30 10:59:05 +09:00
|
|
|
<div v-show="hpml.vars.value[block.var]">
|
2021-11-19 19:36:12 +09:00
|
|
|
<XBlock v-for="child in block.children" :key="child.id" :block="child" :hpml="hpml" :h="h"/>
|
2019-04-30 06:40:02 +09:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-11-12 02:02:25 +09:00
|
|
|
import { IfBlock } from '@/scripts/hpml/block';
|
|
|
|
import { Hpml } from '@/scripts/hpml/evaluator';
|
2021-01-30 10:59:05 +09:00
|
|
|
import { defineComponent, defineAsyncComponent, PropType } from 'vue';
|
2019-04-30 06:40:02 +09:00
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
export default defineComponent({
|
2020-10-19 09:30:21 +09:00
|
|
|
components: {
|
|
|
|
XBlock: defineAsyncComponent(() => import('./page.block.vue'))
|
|
|
|
},
|
2019-04-30 06:40:02 +09:00
|
|
|
props: {
|
2021-01-30 10:59:05 +09:00
|
|
|
block: {
|
|
|
|
type: Object as PropType<IfBlock>,
|
2019-04-30 06:40:02 +09:00
|
|
|
required: true
|
|
|
|
},
|
2020-04-20 21:35:27 +09:00
|
|
|
hpml: {
|
2021-01-30 10:59:05 +09:00
|
|
|
type: Object as PropType<Hpml>,
|
2019-04-30 06:40:02 +09:00
|
|
|
required: true
|
|
|
|
},
|
|
|
|
h: {
|
2021-01-30 10:59:05 +09:00
|
|
|
type: Number,
|
2019-04-30 06:40:02 +09:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|