Sharkey/src/client/components/page/page.switch.vue

47 lines
653 B
Vue
Raw Normal View History

<template>
2019-04-29 09:17:31 +03:00
<div class="hkcxmtwj">
2020-04-20 15:35:27 +03:00
<mk-switch v-model="v">{{ hpml.interpolate(value.text) }}</mk-switch>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import MkSwitch from '../ui/switch.vue';
export default Vue.extend({
components: {
MkSwitch
},
props: {
value: {
required: true
},
2020-04-20 15:35:27 +03:00
hpml: {
required: true
}
},
data() {
return {
v: this.value.default,
};
},
watch: {
v() {
2020-04-20 15:35:27 +03:00
this.hpml.updatePageVar(this.value.name, this.v);
this.hpml.eval();
}
}
});
</script>
2019-04-29 09:17:31 +03:00
<style lang="scss" scoped>
.hkcxmtwj {
display: inline-block;
margin: 16px auto;
2019-04-30 01:41:57 +03:00
& + .hkcxmtwj {
margin-left: 16px;
}
}
2019-04-29 09:17:31 +03:00
</style>