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

21 lines
545 B
Vue
Raw Permalink 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
</script>
<template>
2023-12-16 16:56:55 +00:00
<div
2024-01-05 20:27:11 +00:00
class="d-flex justify-content-center align-items-center object-fill border rounded w-100 h-100"
2023-12-16 16:57:29 +00:00
>
2024-01-11 02:20:20 +00:00
<h2>
2023-12-16 16:57:29 +00:00
{{ settingsStore.remote.STATION.mycall }}-{{
settingsStore.remote.STATION.myssid
}}
2024-01-11 02:20:20 +00:00
</h2>
2023-12-16 16:12:03 +00:00
</div>
2023-12-16 16:11:16 +00:00
</template>