mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 22:43:09 +02:00
48 lines
799 B
Vue
48 lines
799 B
Vue
<template>
|
|
<x-column :name="name" :column="column" :is-stacked="isStacked">
|
|
<span slot="header">%fa:at%{{ name }}</span>
|
|
|
|
<x-mentions ref="tl" @parentFocus="parentFocus"/>
|
|
</x-column>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import XColumn from './deck.column.vue';
|
|
import XMentions from './deck.mentions.vue';
|
|
|
|
export default Vue.extend({
|
|
components: {
|
|
XColumn,
|
|
XMentions
|
|
},
|
|
|
|
props: {
|
|
column: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
isStacked: {
|
|
type: Boolean,
|
|
required: true
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
name(): string {
|
|
if (this.column.name) return this.column.name;
|
|
return '%i18n:common.deck.mentions%';
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
focus() {
|
|
this.$refs.tl.focus();
|
|
},
|
|
|
|
parentFocus(direction) {
|
|
this.$emit('parentFocus', direction);
|
|
},
|
|
}
|
|
});
|
|
</script>
|