wip
This commit is contained in:
parent
e676bb1595
commit
0fbc228c35
|
@ -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>
|
Loading…
Reference in New Issue