summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/router/routes.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/work_items/router/routes.js')
-rw-r--r--app/assets/javascripts/work_items/router/routes.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/assets/javascripts/work_items/router/routes.js b/app/assets/javascripts/work_items/router/routes.js
new file mode 100644
index 00000000000..a3cf44ad4ca
--- /dev/null
+++ b/app/assets/javascripts/work_items/router/routes.js
@@ -0,0 +1,8 @@
+export const routes = [
+ {
+ path: '/:id',
+ name: 'work_item',
+ component: () => import('../pages/work_item_root.vue'),
+ props: true,
+ },
+];