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

50 lines
726 B
Vue
Raw Normal View History

2019-05-02 11:55:59 +03:00
<template>
<div>
<mk-button class="llumlmnx" @click="click()">{{ script.interpolate(value.text) }}</mk-button>
2019-05-02 11:55:59 +03:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import MkButton from '../ui/button.vue';
2019-05-02 11:55:59 +03:00
export default Vue.extend({
components: {
MkButton
},
2019-05-02 11:55:59 +03:00
props: {
value: {
required: true
},
script: {
required: true
}
},
data() {
return {
v: 0,
};
},
watch: {
v() {
this.script.aiScript.updatePageVar(this.value.name, this.v);
this.script.eval();
}
},
methods: {
click() {
this.v = this.v + (this.value.inc || 1);
}
}
});
</script>
<style lang="scss" scoped>
.llumlmnx {
display: inline-block;
min-width: 300px;
max-width: 450px;
margin: 8px 0;
}
2019-05-02 11:55:59 +03:00
</style>