Although there are a lot of UI changes here, the under the hood changes are minimal. And most of them are just pure web front end code so we don't need to explain those. So let's focus on the logic related code in views/TaskMain.vue.
First we get the session_key. This is used as Auth_b64 that we explained before, and will be referenced as authB64: session_key later.
A modal window will then open up showing a form where the user can input the content. Once commited, it will call the cb callback function. This callback function gathers all input task parameters, then sends them back via txn.txn_request. After that, we close the modal and clear the Loading backdrop.
Other operation: delete, task, complete
These operations follow the same pattern but are even simpler.
Summary
So you may have noticed the pattern we used in the front end.
It will be either a query_request or a txn_request. This is exactly the same as we 've done for more than a decade in traditional web2 development. We've worked hard to make the TEA Project a smooth onramp from web2 to web3.