Understanding Persistent Relational Data

... About 2 min

# Understanding Persistent Relational Data

1. When using the Vue cli what is the command to initialize a project?

vue create nameofproject --bare
Then we choose the default vue 3 template. 
1
2

2. Where can you find the scripts to startup you project on localhost?

Scripts can be found at the bottom of the vue files. Also, the env.js can be found in the utils folder in the client for putting in the correct keys you want to connect to. 
1

3. What feature of Vue can be used to repeat an element using a collection of data?

v-for can be used to loop over objects to duplicate elements. 
1

4. What are the three tags that make up a Vue component?

The three tags that make up a Vue component are it's Template, Script, and Style tags. Inside the script tags there is the onmounted, setup, and return functions as well. 
1

5. What does the L represent in the SOLID principles?

The L stands for the Liskov Substitution Principle which basically says that a duck should look like a duck, or in other words, derived classes should not modify the behavior of the parents. 
1

6. Which component in Vue does the vue-router use to mount pages onto?

The vue-router uses the onmounted function to mount the pages to the top, meanwhile it goes through the app which is the central hub of where the pages come together. From the pages, Vue uses the individual components to perform their own tasks. 
1

7. What is the difference between the AppState and the state object within a component?

The appstate is full of stored data that can be used at anytime, while the state objects are more like virtual properties in the fact that they aren't really stored anywhere, but they are passed through the components. 
1

9. What is the responsibility of Services in our Vue projects?

Services in Vue are used for getting, putting, posting, and deleting data from our api's. They are also used to write functions for specific things. 
1

10. Which file contains the root element of your Vue project?

The App.Vue file. 
1

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.

The scss tag is used to alter the styling of your entire Vue project, while adding the scoped attribute to the tag will limit it to just the component it exists on. 
1

12. What is the Vue method used to create watchable objects such as state or AppState?

You can use the Computed method to create watchable objects through the use of props. 
1
Last update: September 23, 2021 04:13