-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Creating routes for admin ministries page
- Loading branch information
Showing
4 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<template> | ||
<v-container grid-list-xl fluid class="custom-manage-projects-container"> | ||
<v-layout> | ||
<v-flex md12> | ||
<h1 class="projects-header">Admin Main</h1> | ||
</v-flex> | ||
</v-layout> | ||
<v-layout row wrap> | ||
<v-flex xs12> | ||
|
||
<!-- <a href="">Ministries</a> --> | ||
<router-link to="admin/ministries">Ministries</router-link> | ||
|
||
</v-flex> | ||
</v-layout> | ||
</v-container> | ||
</template> | ||
|
||
<script> | ||
import Material from 'vuetify/es5/util/colors'; | ||
export default { | ||
data: () => ({ | ||
color: Material, | ||
selectedTab: 'tab-1', | ||
}), | ||
beforeMount() { | ||
// this.$store.state.collapseNavigationBar = true; | ||
}, | ||
computed: {}, | ||
}; | ||
</script> | ||
|
||
<style></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<template> | ||
<v-container grid-list-xl fluid class="custom-manage-projects-container"> | ||
<v-layout> | ||
<v-flex md12> | ||
<h1 class="projects-header">Admin — Ministries</h1> | ||
</v-flex> | ||
</v-layout> | ||
<v-layout row wrap> | ||
<v-flex xs12> | ||
|
||
|
||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nam itaque, asperiores blanditiis ducimus laborum pariatur facere tenetur quo doloribus temporibus culpa eaque sit nihil quasi magni! Mollitia ducimus porro ratione! | ||
|
||
</v-flex> | ||
</v-layout> | ||
</v-container> | ||
</template> | ||
|
||
<script> | ||
import Material from 'vuetify/es5/util/colors'; | ||
export default { | ||
data: () => ({ | ||
color: Material, | ||
selectedTab: 'tab-1', | ||
}), | ||
beforeMount() { | ||
// this.$store.state.collapseNavigationBar = true; | ||
}, | ||
computed: {}, | ||
}; | ||
</script> | ||
|
||
<style></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters