|
@ -12,7 +12,7 @@ |
|
|
clipped |
|
|
clipped |
|
|
color="" |
|
|
color="" |
|
|
> |
|
|
> |
|
|
<the-side-bar /> |
|
|
|
|
|
|
|
|
<the-side-bar :link="getLink" /> |
|
|
</v-navigation-drawer> |
|
|
</v-navigation-drawer> |
|
|
|
|
|
|
|
|
<nuxt /> |
|
|
<nuxt /> |
|
@ -20,6 +20,7 @@ |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
|
|
|
import { mapActions, mapGetters } from 'vuex' |
|
|
import TheSideBar from '~/components/organisms/layout/TheSideBar' |
|
|
import TheSideBar from '~/components/organisms/layout/TheSideBar' |
|
|
import TheHeader from '~/components/organisms/layout/TheHeader' |
|
|
import TheHeader from '~/components/organisms/layout/TheHeader' |
|
|
|
|
|
|
|
@ -32,6 +33,18 @@ export default { |
|
|
return { |
|
|
return { |
|
|
drawerLeft: false |
|
|
drawerLeft: false |
|
|
} |
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
computed: { |
|
|
|
|
|
...mapGetters('projects', ['getLink']) |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
created() { |
|
|
|
|
|
this.setCurrentProject(this.$route.params.id) |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
methods: { |
|
|
|
|
|
...mapActions('projects', ['setCurrentProject']) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |