2019-04-29 03:11:57 +03:00
|
|
|
<template>
|
2019-04-29 09:17:31 +03:00
|
|
|
<div class="hkcxmtwj">
|
2019-04-30 00:40:02 +03:00
|
|
|
<ui-switch v-model="v">{{ script.interpolate(value.text) }}</ui-switch>
|
2019-04-29 03:11:57 +03:00
|
|
|
</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();
|
2019-04-29 03:11:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</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>
|