FreeDATA/gui/src/components/grid/grid_frequency.vue

18 lines
567 B
Vue
Raw Normal View History

2023-12-16 16:11:16 +00:00
<script setup lang="ts">
import { setActivePinia } from "pinia";
import pinia from "../../store/index";
setActivePinia(pinia);
import { useStateStore } from "../../store/stateStore.js";
const state = useStateStore(pinia);
</script>
<template>
2023-12-16 16:56:55 +00:00
<a
2023-12-17 17:59:09 +00:00
class="d-flex justify-content-center align-items-center object-fill border rounded w-100 h-100 link-underline link-underline-opacity-0 link-underline-opacity-75-hover text-bg-light"
2023-12-16 16:56:55 +00:00
data-bs-toggle="offcanvas"
2023-12-16 16:57:29 +00:00
data-bs-target="#offcanvasFrequency"
2023-12-16 16:56:55 +00:00
>
2023-12-16 16:57:29 +00:00
{{ state.frequency / 1000 }} kHz
</a>
2023-12-16 16:11:16 +00:00
</template>