# AUR0228

## Error Message

`AUR0228: @computed decorator can only be used on a getter, "{{name}}" is not a getter.`

Where `{{name}}` is the member name the decorator was applied to.

## Description

This error occurs when `@computed` is applied to something other than a getter (for example a method, a field, or a setter). Aurelia’s `@computed` decorator only supports getter accessors.

## Example Trigger

```ts
import { computed } from '@aurelia/runtime';

export class MyVm {
  // ❌ Not a getter
  @computed
  total() {
    return 0;
  }
}
```

## Solution

Apply `@computed` to a getter.

```ts
import { computed } from '@aurelia/runtime';

export class MyVm {
  private _items: number[] = [];

  @computed
  get total() {
    return this._items.reduce((a, b) => a + b, 0);
  }
}
```

## Troubleshooting

* Confirm the decorated member is a `get ...()` accessor.
* If you need a method, remove `@computed` and call the method directly.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aurelia.io/developer-guides/error-messages/0203-to-0227/aur0228.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
