Control panel migration
gitea/hedera-web/pipeline/pr-dev There was a failure building this commit Details
gitea/hedera-web/pipeline/pr-beta This commit looks good Details

This commit is contained in:
William Buezas 2025-03-16 17:31:24 -03:00
parent 47c61a7b35
commit ce4fdf06f5
1 changed files with 4 additions and 5 deletions

View File

@ -1,16 +1,15 @@
<script setup>
import { ref, onMounted, inject } from 'vue';
const jApi = inject('jApi');
const api = inject('api');
const links = ref([]);
const getLinks = async () => {
try {
links.value = await jApi.query(
`SELECT image, name, description, link FROM link
ORDER BY name`
);
const filter = { order: 'name ASC' };
const { data } = await api.get('/Links', { params: { filter } });
links.value = data;
} catch (error) {
console.error('Error getting links:', error);
}