Skip to content

Commit a01cc6a

Browse files
author
Jon
committed
Fix missing AccountsGet view
1 parent e43c89e commit a01cc6a

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

src/views/AccountsGet.vue

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<template>
2+
<b-row>
3+
<b-col>
4+
<passthrough-get :endpoint="endpoint" :success-redirect-view-name="successRedirectViewName" />
5+
</b-col>
6+
</b-row>
7+
</template>
8+
<script>
9+
import PassthroughGet from '@/components/PassthroughGet.vue';
10+
11+
export default {
12+
name: 'AccountsPassthroughGetPage',
13+
components: {
14+
PassthroughGet
15+
},
16+
props: {
17+
successRedirectViewName: {
18+
type: String,
19+
default: ''
20+
}
21+
},
22+
data: function() {
23+
return {
24+
endpoint: this.$route.path
25+
};
26+
}
27+
};
28+
</script>

0 commit comments

Comments
 (0)