Please enable JavaScript.
Coggle requires JavaScript to display documents.
Calc extension (employ best practices (vue style guide (Prop definitions…
Calc extension
employ best practices
-
-
styles in a top-level App component and in layout components may be global, but all other components should always be scoped
-
Components that should only ever have a single active instance should begin with the The prefix, to denote that there can be only one
Child components that are tightly coupled with their parent should include the parent component name as a prefix.
Component names should start with the highest-level (often most general) words and end with descriptive modifying words.
-
Prop names should always use camelCase during declaration, but kebab-case in templates
Elements with multiple attributes should span multiple lines, with one attribute per line.
Component templates should only include simple expressions, with more complex expressions refactored into computed properties or methods.
-
-
-
-
-
-
use git, look into git common patterns, etc.
-
-
look into where to put the business logic in vue projects: in the templates? in dedicated components? in vuex store?
-
-
-
-
-
-
-
-
code enhancements
After reading or watching something, write down notebale things or concrete things to employ in your worflow
-
-
-