Skip to content

Instantly share code, notes, and snippets.

@coltborg
Last active December 6, 2019 01:19
Show Gist options
  • Save coltborg/4e9ff51e5a8aa1245038ea9009a00870 to your computer and use it in GitHub Desktop.
Save coltborg/4e9ff51e5a8aa1245038ea9009a00870 to your computer and use it in GitHub Desktop.
Vue 3 Essentials - Methods
<template>
<div>Capacity: {{ capacity }}</div>
<button @click="increaseCapacity">Increase Capacity</button>
</template>
<script>
import { ref } from "vue";
export default {
setup() {
const capacity = ref(3);
fucntion increaseCapacity() {
capacity.value++;
}
return { capacity, increaseCapacity };
},
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment