https://nacholabraweb.000webhostapp.com/Tutoriales/#/Sublime
vc
<template /> <script> export default { ... } </script>
vex
export default { data () { ... } }
vfor
<div v-for="item in items">
<p> {{ item }} </p>
</div>
vuex3
import { createStore } from 'vuex'
export default createStore({ ..
exp
export default
fetch
async fetch with example
fu
function functionName() {}
=> const functionName = () => {}
cl
console.log()
comp
computed: {}
mount
mounted () {}
method
methods: {}
data
data () {..}
useState
const [value,setvalue] = useState()
addEvent
addEventListener('this', () => {})