Vue directives such as
v-for, v-if, v-else # for conditions and looping inside <template>
v-on # for binding functions inside <template>
State management in Vue
data() { return <some-data>} # lives inside script
props: <data passed from components> # lives inside script
API calls
async await # for making asynchronus calls
fetch(url, method..etc) or axios # for making the api call to url
trycatch # good practice
Lifecycle method
mounted: {} # lives inside script
npm install
npm run serve
npm run build
npm run lint