What are the two ways to define a plugin?
For radio, checkbox and select options, the v-model
binding values are usually ______ strings (or booleans for checkbox)
What built-in component allows you to conditionally cache component instances when dynamically switching between multiple components?
What are the two core features of Vue?
What is the Virtual DOM?
What does SFC stand for?
What role do animation libraries like GSAP play when used with Vue watchers?
Answer:
What does SSG stand for?
Which is cheaper and easier to deploy, Server Side Rendering (SSR) or Static Site Generation (SSG)?
What is the command to install and execute create-vue, the official Vue project scaffolding tool?
What built-in component provides the ability to display top-level loading / error states while waiting on nested async dependencies to be resolved?
What are unit tests?
If a child component’s root element already has existing class or style attributes, does passing class or style fallthrough attributes merge or replace the attributes from the root element?
What is the first thing to do when creating an app with Vue?
Does slot content have access to the state of the parent component?
How does Vue handle passing complex data to custom elements that cannot be passed through DOM attributes?
In