mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
15 lines
255 B
Vue
15 lines
255 B
Vue
<script lang="ts" setup>
|
|
|
|
const { data: links } = useFetch('/api/project/links/list', {
|
|
headers: useComputedHeaders()
|
|
});
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<div v-for="link of links">
|
|
{{ link }}
|
|
</div>
|
|
</div>
|
|
</template> |