Publish "A Tour of MPJ: State in the Browser" post

Also linked it to intro post and footer of front end post
This commit is contained in:
Daniel J. Summers 2018-08-26 07:39:57 -05:00
parent c671a3ddac
commit 3208f9bff3
3 changed files with 5 additions and 3 deletions

View File

@ -30,7 +30,7 @@ Recently, we released version 1.0 of [myPrayerJournal][], a minimalistic prayer
- **Part 0: Introduction** _(this post)_
- **[Part 1: The Front End][part1]** - Vue components and routing
- **Part 2: State in the Browser** - Vuex and getting information from an API
- **[Part 2: State in the Browser][part2]** - Vuex and getting information from an API
- **Part 3: The API** - Giraffe and JSON web endpoints
- **Part 4: Authentication** - Auth0, using information in both app and API
- **Part 5: The Data Store** - EF Core backed by PostgreSQL, with the `DbContext` defined in F#
@ -59,6 +59,7 @@ Armed with these requirements, we will pick up next time with a look at the Vue
[myPrayerJournal]: https://github.com/bit-badger/myPrayerJournal/tree/1.0.0
[part1]: /2018/a-tour-of-myprayerjournal/the-front-end.html "A Tour of myPrayerJournal: The Front End | The Bit Badger Blog"
[part2]: /2018/a-tour-of-myprayerjournal/state-in-the-browser.html "A Tour of myPrayerJournal: State in the Browser | The Bit Badger Blog"
[Angular]: https://angular.io
[Aurelia]: https://aurelia.io
[Elm]: http://elm-lang.org

View File

@ -1,7 +1,7 @@
---
layout: post
title: "A Tour of myPrayerJournal: State in the Browser"
date: 2018-08-26 12:15:00
date: 2018-08-26 07:30:00
author: Daniel
categories:
- [ Programming, JavaScript, Vue ]

View File

@ -70,7 +70,7 @@ An example of the second technique, a dedicated parent/child event bus, can be s
<p>&nbsp;</p>
That wraps up our tour of Vue routes and components; next time, we'll take a look at Vuex, and how it helps us maintain state in the browser.
That wraps up our tour of Vue routes and components; next time, we'll take a look at Vuex, and how it helps us maintain [state in the browser][state].
---
<a name="note-1"><sup>1</sup></a> _That's my summary; I'm sure they've got much more eloquent ways to describe it._
@ -97,3 +97,4 @@ That wraps up our tour of Vue routes and components; next time, we'll take a loo
[RLI.vue]: https://github.com/bit-badger/myPrayerJournal/blob/1.0.0/src/app/src/components/request/RequestListItem.vue "app/src/components/request/RequestListItem.vue | myPrayerJournal | GitHub"
[AnsweredRequests.vue]: https://github.com/bit-badger/myPrayerJournal/blob/1.0.0/src/app/src/components/request/AnsweredRequests.vue "app/src/components/request/AnsweredRequests.vue | myPrayerJournal | GitHub"
[NotesEdit.vue]: https://github.com/bit-badger/myPrayerJournal/blob/1.0.0/src/app/src/components/request/NotesEdit.vue "app/src/components/request/NotesEdit.vue | myPrayerJournal | GitHub"
[state]: /2018/a-tour-of-myprayerjournal/state-in-the-browser.html "A Tour of myPrayerJournal: State in the Browser | The Bit Badger Blog"