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

47 lines
670 B
Vue
Raw Normal View History

<template>
2019-04-29 09:17:31 +03:00
<div class="hkcxmtwj">
<mk-switch v-model="v">{{ script.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
},
script: {
required: true
}
},
data() {
return {
v: this.value.default,
};
},
watch: {
v() {
this.script.aiScript.updatePageVar(this.value.name, this.v);
2019-05-01 09:17:24 +03:00
this.script.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>