diff --git a/docs/Presentations/AI Learning Tool Beta.pdf b/docs/Presentations/AI Learning Tool Beta.pdf new file mode 100644 index 00000000..86e0ff12 Binary files /dev/null and b/docs/Presentations/AI Learning Tool Beta.pdf differ diff --git a/docs/Presentations/AI Learning Tool MVP.pdf b/docs/Presentations/AI Learning Tool MVP.pdf new file mode 100644 index 00000000..2154184c Binary files /dev/null and b/docs/Presentations/AI Learning Tool MVP.pdf differ diff --git a/docs/Research/vue-notes.md b/docs/Research/vue-notes.md new file mode 100644 index 00000000..d909ca22 --- /dev/null +++ b/docs/Research/vue-notes.md @@ -0,0 +1,81 @@ +# Basics + +@keyup.enter \- waits for “Enter” keypress event + +{{ sum }} \- represents the “sum” variable in Virtual Object Model. + +import { createApp } from 'vue' + +const app \= createApp({ + data() { + return { + count: 0 + } + }, + methods: { + changeCount(x) { + this.count \= x + } + } +}) + +data \- represents local constants/variables in the application instance. +methods \- represent local methods. + +\# Triggers toggleBox routine when the button is clicked. +\