27 lines
571 B
Vue
27 lines
571 B
Vue
<template>
|
|
<XColumn :column="column" :isStacked="isStacked">
|
|
<template #header><i class="ti ti-at" style="margin-right: 8px;"></i>{{ column.name }}</template>
|
|
|
|
<MkNotes :pagination="pagination"/>
|
|
</XColumn>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import XColumn from './column.vue';
|
|
import { Column } from './deck-store';
|
|
import MkNotes from '@/components/MkNotes.vue';
|
|
|
|
defineProps<{
|
|
column: Column;
|
|
isStacked: boolean;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
}>();
|
|
|
|
const pagination = {
|
|
endpoint: 'notes/mentions' as const,
|
|
limit: 10,
|
|
};
|
|
</script>
|