debian-mirror-gitlab/app/assets/javascripts/jira_connect/components/app.vue

17 lines
237 B
Vue
Raw Normal View History

2021-01-29 00:20:46 +05:30
<script>
2021-02-22 17:27:13 +05:30
export default {
name: 'JiraConnectApp',
computed: {
state() {
return this.$root.$data.state || {};
},
error() {
return this.state.error;
},
},
};
2021-01-29 00:20:46 +05:30
</script>
<template>
<div></div>
</template>