diff options
Diffstat (limited to 'src/client/app/common/views/components/page/page.counter.vue')
| -rw-r--r-- | src/client/app/common/views/components/page/page.counter.vue | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/src/client/app/common/views/components/page/page.counter.vue b/src/client/app/common/views/components/page/page.counter.vue deleted file mode 100644 index 8d55319fe9..0000000000 --- a/src/client/app/common/views/components/page/page.counter.vue +++ /dev/null @@ -1,47 +0,0 @@ -<template> -<div> - <ui-button class="llumlmnx" @click="click()">{{ script.interpolate(value.text) }}</ui-button> -</div> -</template> - -<script lang="ts"> -import Vue from 'vue'; - -export default Vue.extend({ - 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="stylus" scoped> -.llumlmnx - display inline-block - min-width 300px - max-width 450px - margin 8px 0 -</style> |