2020-07-11 03:13:11 +02:00
|
|
|
<template>
|
2023-05-20 03:12:18 +02:00
|
|
|
<XColumn :column="column" :isStacked="isStacked">
|
2022-12-19 11:01:30 +01:00
|
|
|
<template #header><i class="ti ti-at" style="margin-right: 8px;"></i>{{ column.name }}</template>
|
2020-07-11 03:13:11 +02:00
|
|
|
|
2023-02-22 03:00:34 +01:00
|
|
|
<MkNotes :pagination="pagination"/>
|
2020-10-17 13:12:00 +02:00
|
|
|
</XColumn>
|
2020-07-11 03:13:11 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-12 18:29:27 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2020-07-11 03:13:11 +02:00
|
|
|
import XColumn from './column.vue';
|
2022-03-20 19:11:14 +01:00
|
|
|
import { Column } from './deck-store';
|
2023-02-22 03:00:34 +01:00
|
|
|
import MkNotes from '@/components/MkNotes.vue';
|
2020-07-11 03:13:11 +02:00
|
|
|
|
2022-03-20 19:11:14 +01:00
|
|
|
defineProps<{
|
|
|
|
column: Column;
|
2022-01-12 18:29:27 +01:00
|
|
|
isStacked: boolean;
|
|
|
|
}>();
|
2020-07-11 03:13:11 +02:00
|
|
|
|
2022-03-20 19:11:14 +01:00
|
|
|
const emit = defineEmits<{
|
|
|
|
}>();
|
|
|
|
|
2022-01-12 18:29:27 +01:00
|
|
|
const pagination = {
|
|
|
|
endpoint: 'notes/mentions' as const,
|
|
|
|
limit: 10,
|
|
|
|
};
|
2020-07-11 03:13:11 +02:00
|
|
|
</script>
|