mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
* Added stripe payment for group plan * Began adding amazon * Added amazon payments for group * Added get group plans route * Added group plan nav * Added initial task page * Added create and edit group plans * Added initial approval header and footer * Added assignment and approved requirement * Added minor text fixes * Added inital approval flow * Added approval modal * Removed always true * Added more styles for filters * Added search * Added env vars * Fixed router issues * Added env to social login * Fixed merge conflict
23 lines
627 B
Vue
23 lines
627 B
Vue
<template lang="pug">
|
|
.row
|
|
secondary-menu.col-12
|
|
router-link.nav-link(:to="{name: 'groupPlanDetailTaskInformation', params: {groupId}}",
|
|
exact, :class="{'active': $route.name === 'groupPlanDetailTaskInformation'}") Task Board
|
|
router-link.nav-link(:to="{name: 'groupPlanDetailInformation', params: {groupId}}",
|
|
exact, :class="{'active': $route.name === 'groupPlanDetailInformation'}") Group Information
|
|
|
|
.col-12
|
|
router-view
|
|
</template>
|
|
|
|
<script>
|
|
import SecondaryMenu from 'client/components/secondaryMenu';
|
|
|
|
export default {
|
|
props: ['groupId'],
|
|
components: {
|
|
SecondaryMenu,
|
|
},
|
|
};
|
|
</script>
|