diff --git a/source/_posts/2018/a-tour-of-myprayerjournal/introduction.md b/source/_posts/2018/a-tour-of-myprayerjournal/introduction.md index 2764beb..b75e32c 100644 --- a/source/_posts/2018/a-tour-of-myprayerjournal/introduction.md +++ b/source/_posts/2018/a-tour-of-myprayerjournal/introduction.md @@ -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 diff --git a/source/_drafts/state-in-the-browser.md b/source/_posts/2018/a-tour-of-myprayerjournal/state-in-the-browser.md similarity index 99% rename from source/_drafts/state-in-the-browser.md rename to source/_posts/2018/a-tour-of-myprayerjournal/state-in-the-browser.md index ce2475c..3f2608e 100644 --- a/source/_drafts/state-in-the-browser.md +++ b/source/_posts/2018/a-tour-of-myprayerjournal/state-in-the-browser.md @@ -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 ] diff --git a/source/_posts/2018/a-tour-of-myprayerjournal/the-front-end.md b/source/_posts/2018/a-tour-of-myprayerjournal/the-front-end.md index cca8667..1c96fde 100644 --- a/source/_posts/2018/a-tour-of-myprayerjournal/the-front-end.md +++ b/source/_posts/2018/a-tour-of-myprayerjournal/the-front-end.md @@ -70,7 +70,7 @@ An example of the second technique, a dedicated parent/child event bus, can be s

 

-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]. --- 1 _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"