rudeshark.net/src/client/components/page/page.switch.vue
2020-04-13 03:23:23 +09:00

47 lines
671 B
Vue

<template>
<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.aoiScript.updatePageVar(this.value.name, this.v);
this.script.eval();
}
}
});
</script>
<style lang="scss" scoped>
.hkcxmtwj {
display: inline-block;
margin: 16px auto;
& + .hkcxmtwj {
margin-left: 16px;
}
}
</style>