Understanding Persistent Relational Data

2021-8-16 About 1 min

# 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.
1

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

npm
1

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

I would assume v-repeat
1

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

<template><script><style>
1

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

Liskov Substitution
1

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

router.js
1

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.
1

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

The director, logic behind the whole shebang.
1

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

main.js
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.

Style and Scoped

1
2

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

watchEffect
1
Last update: September 26, 2021 22:24
Contributors: Derek Shain