Understanding Persistent Relational Data
# Understanding Persistent Relational Data
1. When using the Vue cli what is the command to initialize a project?
The git repository or the project? Just bcw-create and select, or click initialize repository.
2. Where can you find the scripts to startup you project on localhost?
npm
3. What feature of Vue can be used to repeat an element using a collection of data?
I would assume v-repeat
4. What are the three tags that make up a Vue component?
<template><script><style>
5. What does the L represent in the SOLID principles?
Liskov Substitution
6. Which component in Vue does the vue-router use to mount pages onto?
router.js
7. What is the difference between the AppState and the state object within a component?
the state object in a component is coped to that page, AppState is teh entire project.
9. What is the responsibility of Services in our Vue projects?
The director, logic behind the whole shebang.
10. Which file contains the root element of your Vue project?
main.js
11. The ______ tag is used to alter the styling of your entire Vue project. Adding the ______ attribute to this tag will limit it to just the component it exists. Fill in the blank.
Style and Scoped
2
12. What is the Vue method used to create watchable objects such as state or AppState?
watchEffect