This commit is contained in:
2019-04-18 22:35:20 +00:00
parent c2289eaf30
commit 266cc78530
2 changed files with 2 additions and 9 deletions

View File

@@ -48,9 +48,10 @@ All platforms and browsers
- Keep the original in the menu though for people that are used to it?
- DONE reorganize SAVE, DELETE ETC, put a divider between main form actions and then all the myriad of secondary things
- DONE LOCALIZE check all new menu items, some might be not localized (look for ALL CAPS)
- WIRE UP logout link to go to login form and logout properly
- DONE WIRE UP logout link to go to login form and logout properly
- WIRE up save menu item and add code to disable save on broken rules (and make red, disabled etc)
- Wire up delete menu item
- api code is stubbed out for delete, need to write that as well
- Move ABOUT item to just above HELP in menu and remove from main NAV and make it navigate properly on click
- DO I need to institute a back button? (in APP MODE?? installed to "desktop" on device will I be able to easily navigate without back and forward buttons)

View File

@@ -132,14 +132,6 @@ export default {
this.$router.replace({ name: "login" });
}
},
// methods: {
// setAuthenticated(status) {
// this.$store.state.authenticated = status;
// },
// logout() {
// this.$store.state.authenticated = false;
// }
// },
computed: {
isAuthenticated() {
return this.$store.state.authenticated === true;