computed — cached. methods — no cache.
1// computed - cached2const doubled = computed(() => count.value * 2)3 4// methods - no cache5function getDoubled() {6 return count.value * 27}