Files
controller-wisetopvue/src/components/analysis/spike/toolbox/ShowResampleRate.vue
T
2021-08-26 02:03:30 +08:00

38 lines
454 B
Vue

<template>
<div>
<span> Resample: {{ currentScale }} to 1 </span>
</div>
</template>
<script>
import { mapFields } from 'vuex-map-fields'
export default {
name: 'show-resample-rate',
components: {
},
props: {
},
created () {
},
data () {
return {
}
},
computed: {
...mapFields('spike', [
'currentScale',
]),
},
watch: {
},
methods: {
},
mounted () {
},
destroyed () {
},
}
</script>