0e4a111f81
Resolve #7779
56 lines
1.1 KiB
Vue
56 lines
1.1 KiB
Vue
<template>
|
|
<div class="hkcxmtwj">
|
|
<MkSwitch :model-value="value" @update:modelValue="updateValue($event)">{{ hpml.interpolate(block.text) }}</MkSwitch>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent, PropType } from 'vue';
|
|
import MkSwitch from '../form/switch.vue';
|
|
import * as os from '@/os';
|
|
import { Hpml } from '@/scripts/hpml/evaluator';
|
|
import { SwitchVarBlock } from '@/scripts/hpml/block';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
MkSwitch
|
|
},
|
|
props: {
|
|
block: {
|
|
type: Object as PropType<SwitchVarBlock>,
|
|
required: true
|
|
},
|
|
hpml: {
|
|
type: Object as PropType<Hpml>,
|
|
required: true
|
|
}
|
|
},
|
|
setup(props, ctx) {
|
|
const value = computed(() => {
|
|
return props.hpml.vars.value[props.block.name];
|
|
});
|
|
|
|
function updateValue(newValue: boolean) {
|
|
props.hpml.updatePageVar(props.block.name, newValue);
|
|
props.hpml.eval();
|
|
}
|
|
|
|
return {
|
|
value,
|
|
updateValue
|
|
};
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.hkcxmtwj {
|
|
display: inline-block;
|
|
margin: 16px auto;
|
|
|
|
& + .hkcxmtwj {
|
|
margin-left: 16px;
|
|
}
|
|
}
|
|
</style>
|