Welcome to mirror list, hosted at ThFree Co, Russian Federation.

app.vue « components « jira_connect « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 490bf2fdd66bb3c4497340953fe744a6ea2db3f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<script>
export default {
  name: 'JiraConnectApp',
  computed: {
    state() {
      return this.$root.$data.state || {};
    },
    error() {
      return this.state.error;
    },
  },
};
</script>
<template>
  <div></div>
</template>