FoundKey/packages/client/src/components/featured-photos.vue

23 lines
510 B
Vue
Raw Normal View History

2020-12-30 15:22:20 +00:00
<template>
2021-11-19 10:36:12 +00:00
<div v-if="meta" class="xfbouadm" :style="{ backgroundImage: `url(${ meta.backgroundImageUrl })` }"></div>
2020-12-30 15:22:20 +00:00
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import * as Misskey from 'foundkey-js';
2021-11-11 17:02:25 +00:00
import * as os from '@/os';
2020-12-30 15:22:20 +00:00
const meta = ref<Misskey.entities.DetailedInstanceMetadata>();
2020-12-30 15:22:20 +00:00
os.api('meta', { detail: true }).then(gotMeta => {
meta.value = gotMeta;
2020-12-30 15:22:20 +00:00
});
</script>
<style lang="scss" scoped>
.xfbouadm {
background-position: center;
background-size: cover;
}
</style>