Sharkey/src/client/app/common/views/components/page/page.switch.vue

44 lines
589 B
Vue
Raw Normal View History

<template>
2019-04-29 09:17:31 +03:00
<div class="hkcxmtwj">
<ui-switch v-model="v">{{ script.interpolate(value.text) }}</ui-switch>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
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="stylus" 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>