diff --git a/keepr.client/src/AppState.js b/keepr.client/src/AppState.js index b28a0f9..c5e1525 100644 --- a/keepr.client/src/AppState.js +++ b/keepr.client/src/AppState.js @@ -4,5 +4,6 @@ import { reactive } from 'vue' export const AppState = reactive({ user: {}, account: {}, - keeps: [] + keeps: [], + activeKeep: {} }) diff --git a/keepr.client/src/components/KeepModal.vue b/keepr.client/src/components/KeepModal.vue new file mode 100644 index 0000000..9436840 --- /dev/null +++ b/keepr.client/src/components/KeepModal.vue @@ -0,0 +1,53 @@ + + + + + + + + {{ keep?.name }} + + + + + body + + + + + + + + + + + + + \ No newline at end of file diff --git a/keepr.client/src/components/KeepTile.vue b/keepr.client/src/components/KeepTile.vue index b81786a..22c4bd6 100644 --- a/keepr.client/src/components/KeepTile.vue +++ b/keepr.client/src/components/KeepTile.vue @@ -1,32 +1,50 @@ - - - - - - {{ keep.name }} - - - - + + + + + + {{ keep.name }} + + + + @@ -35,6 +53,7 @@ export default {