aboutsummaryrefslogtreecommitdiff
path: root/src/components/staff_panel/staff_panel.js
diff options
context:
space:
mode:
authorAriadne Conill <ariadne@dereferenced.org>2019-11-08 23:21:07 -0600
committerAriadne Conill <ariadne@dereferenced.org>2019-11-08 23:21:07 -0600
commit20ccd93a176f911a43b3db3d595f3fdb3491934f (patch)
tree020a8566f8bb3c7864fc69ba1120697174a17a77 /src/components/staff_panel/staff_panel.js
parent5db77c839bcf2ec433c8618c5b2ef1ff850df613 (diff)
about: add staff panel
Diffstat (limited to 'src/components/staff_panel/staff_panel.js')
-rw-r--r--src/components/staff_panel/staff_panel.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/components/staff_panel/staff_panel.js b/src/components/staff_panel/staff_panel.js
new file mode 100644
index 00000000..b4d23079
--- /dev/null
+++ b/src/components/staff_panel/staff_panel.js
@@ -0,0 +1,15 @@
+import BasicUserCard from '../basic_user_card/basic_user_card.vue'
+
+const StaffPanel = {
+ components: {
+ BasicUserCard
+ },
+ computed: {
+ staffAccounts() {
+ return this.$store.state.instance.staffAccounts
+ }
+ }
+}
+
+export default StaffPanel
+