Options — object. Composition — function.
1// Options2export default {3 data() { return { count: 0 } },4 methods: {5 increment() { this.count++ }6 }7}89// Composition10import { ref } from "vue"11const count = ref(0)12const increment = () => count.value++