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

23 lines
589 B
Vue
Raw Normal View History

2023-12-16 16:11:16 +00:00
<script setup lang="ts">
import { reactive, ref } from "vue";
import { setActivePinia } from "pinia";
import { setConfig } from "../../js/api";
import pinia from "../../store/index";
setActivePinia(pinia);
2023-12-16 16:56:55 +00:00
import { settingsStore } from "../../store/settingsStore.js";
2023-12-16 16:11:16 +00:00
2023-12-16 16:12:03 +00:00
function updateMyCall() {
2023-12-16 16:11:16 +00:00
setConfig();
}
</script>
<template>
2023-12-16 16:56:55 +00:00
<div
class="d-flex justify-content-center align-items-center object-fill border rounded text-bg-light w-100 h-100"
><strong>
{{ settingsStore.remote.STATION.mycall}}-{{ settingsStore.remote.STATION.myssid}}
</strong>
2023-12-16 16:12:03 +00:00
</div>
2023-12-16 16:56:55 +00:00
2023-12-16 16:11:16 +00:00
</template>