2018-09-17 17:14:12 +00:00
|
|
|
<template>
|
|
|
|
<x-column :name="name" :column="column" :is-stacked="isStacked">
|
|
|
|
<span slot="header">%fa:envelope R%{{ name }}</span>
|
|
|
|
|
2018-10-19 17:49:39 +00:00
|
|
|
<x-direct @parentFocus="parentFocus"/>
|
2018-09-17 17:14:12 +00:00
|
|
|
</x-column>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import XColumn from './deck.column.vue';
|
|
|
|
import XDirect from './deck.direct.vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
|
|
|
XColumn,
|
|
|
|
XDirect
|
|
|
|
},
|
|
|
|
|
|
|
|
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.direct%';
|
|
|
|
}
|
|
|
|
},
|
2018-10-19 17:49:39 +00:00
|
|
|
|
|
|
|
methods: {
|
|
|
|
focus() {
|
|
|
|
this.$refs.tl.focus();
|
|
|
|
},
|
|
|
|
|
|
|
|
parentFocus(direction) {
|
|
|
|
this.$emit('parentFocus', direction);
|
|
|
|
},
|
|
|
|
}
|
2018-09-17 17:14:12 +00:00
|
|
|
});
|
|
|
|
</script>
|