summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jira_connect/components/app.vue
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>