Hello,
I tried the Tutorial #6 on the latest docker environment running NC35.
When testing the resulting app, the delete note function was not working as expected.
After some investigation I found that there is some Vue2 function used in the code which is not working in Vue3 anymore.
The code in the App.vue file in line 127 should be changed as shown below:
// this.$set(this.notesById[noteId], 'trash', true)
this.notesById[noteId].trash = true
After this was changed the app works as expected.
Maybe someone with the needed rights can adjust the tutorial file accordingly.