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