1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<script> import { mapState } from 'vuex'; import RepoTab from './repo_tab.vue'; export default { components: { 'repo-tab': RepoTab, }, computed: { ...mapState([ 'openFiles', ]), }, }; </script> <template> <ul class="multi-file-tabs list-unstyled append-bottom-0" > <repo-tab v-for="tab in openFiles" :key="tab.id" :tab="tab" /> </ul> </template>