This commit is contained in:
こぴなたみぽ 2018-02-13 16:00:08 +09:00
parent e676bb1595
commit 0fbc228c35
1 changed files with 0 additions and 16 deletions

View File

@ -1,16 +0,0 @@
<mk-number>
<style lang="stylus" scoped>
:scope
display inline
</style>
<script lang="typescript">
this.on('mount', () => {
let value = this.opts.value;
const max = this.opts.max;
if (max != null && value > max) value = max;
this.root.innerHTML = value.toLocaleString();
});
</script>
</mk-number>