38 lines
454 B
Vue
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>
|