1Mediumgeneralโฑ 45sWhat is the difference between `computed` and a regular method in Vue?๐โผAThey behave identically in every caseBcomputed properties are cached based on their reactive dependencies and only recompute when those dependencies change; methods re-run every time they are called (e.g. on every render)CMethods are cached; computed properties are notDcomputed can only be used with v-for