mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-30 03:33:08 +02:00
c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
54 lines
924 B
Vue
54 lines
924 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<section>
|
|
<component
|
|
:is="'h' + h"
|
|
:class="{
|
|
'h2': h === 2,
|
|
'h3': h === 3,
|
|
'h4': h === 4,
|
|
}"
|
|
>
|
|
{{ block.title }}
|
|
</component>
|
|
|
|
<div class="_gaps">
|
|
<XBlock v-for="child in block.children" :key="child.id" :page="page" :block="child" :h="h + 1"/>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defineAsyncComponent } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import { SectionBlock } from './block.type';
|
|
|
|
const XBlock = defineAsyncComponent(() => import('./page.block.vue'));
|
|
|
|
defineProps<{
|
|
block: SectionBlock,
|
|
h: number,
|
|
page: Misskey.entities.Page,
|
|
}>();
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.h2 {
|
|
font-size: 1.35em;
|
|
margin: 0 0 0.5em 0;
|
|
}
|
|
|
|
.h3 {
|
|
font-size: 1em;
|
|
margin: 0 0 0.5em 0;
|
|
}
|
|
|
|
.h4 {
|
|
font-size: 1em;
|
|
margin: 0 0 0.5em 0;
|
|
}
|
|
</style>
|