generated from ytgov/vue-template
-
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.
Merge pull request #280 from icefoganalytics/test
Vendor bug fix and standing docs stub
- Loading branch information
Showing
3 changed files
with
49 additions
and
21 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,30 @@ | ||
<template> | ||
<div> | ||
<v-card class="default mb-5"> | ||
<v-card-title class="text-h6 font-weight-regular d-flex"> | ||
Standing Documents | ||
</v-card-title> | ||
<v-card-text></v-card-text> | ||
</v-card> | ||
|
||
<confirm-dialog ref="confirm"></confirm-dialog> | ||
</div> | ||
</template> | ||
<script> | ||
import store from "../../store"; | ||
export default { | ||
data: () => ({ | ||
showAdd: false, | ||
}), | ||
computed: { | ||
student: function() { | ||
return store.getters.selectedStudent; | ||
}, | ||
}, | ||
async created() { | ||
store.dispatch("setAcademicYears"); | ||
}, | ||
methods: {}, | ||
}; | ||
</script> |
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