Sharkey/src/client/components/page/page.number-input.vue

45 lines
671 B
Vue
Raw Normal View History

<template>
<div>
<mk-input class="kudkigyw" v-model="v" type="number">{{ script.interpolate(value.text) }}</mk-input>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import MkInput from '../ui/input.vue';
export default Vue.extend({
components: {
MkInput
},
props: {
value: {
required: true
},
script: {
required: true
}
},
data() {
return {
v: this.value.default,
};
},
watch: {
v() {
2019-04-30 06:15:41 +03:00
this.script.aiScript.updatePageVar(this.value.name, this.v);
2019-05-01 09:17:24 +03:00
this.script.eval();
}
}
});
</script>
<style lang="scss" scoped>
.kudkigyw {
display: inline-block;
min-width: 300px;
max-width: 450px;
margin: 8px 0;
}
</style>