diff --git a/src/api/sfc-script-setup.md b/src/api/sfc-script-setup.md
index 9dcfa2909d..89bd6f4440 100644
--- a/src/api/sfc-script-setup.md
+++ b/src/api/sfc-script-setup.md
@@ -479,6 +479,20 @@ In addition, the awaited expression will be automatically compiled in a format t
`async setup()` must be used in combination with [`Suspense`](/guide/built-ins/suspense.html), which is currently still an experimental feature. We plan to finalize and document it in a future release - but if you are curious now, you can refer to its [tests](https://github.com/vuejs/core/blob/main/packages/runtime-core/__tests__/components/Suspense.spec.ts) to see how it works.
:::
+## Import Statements {#imports-statements}
+
+Import statements in vue follow [ECMAScript module specification](https://nodejs.org/api/esm.html).
+In addition, you can use aliases defined in your build tool configuration:
+
+```vue
+
+```
+
## Generics {#generics}
Generic type parameters can be declared using the `generic` attribute on the `