The Composition API entry point is the `setup()` function, called once when a component instance is created, before any lifecycle hooks. It receives `props` and `context` (which exposes `attrs`, `slots`, `emit`, and `expose`) as arguments. Everything you return from `setup` becomes available in the template.
`