We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e43c89e commit a01cc6aCopy full SHA for a01cc6a
1 file changed
src/views/AccountsGet.vue
@@ -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