wiki/content/20201116170151-dynamic_import.md

16 lines
240 B
Markdown
Raw Permalink Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:34:11 +00:00
date: 2020-11-16
2024-05-06 20:40:05 +00:00
id: c6de9c5c-2b33-4550-a679-8c32075d2c24
title: Dynamic Import
---
# Description
Modules can be imported dynamically on-demand anywhere in the code
# Syntax
``` javascript
const module = await import('module');
```