Skip to content

Commit 8db3138

Browse files
committed
feat: require
1 parent fa4ea0f commit 8db3138

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

docs/trem/miscellaneous/require.mdx

+23
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,26 @@ sidebar_position: 5
33
---
44

55
# 導入其他擴充
6+
7+
## test.js
8+
9+
plugins/test/test.js
10+
11+
```js
12+
const test = 123;
13+
14+
module.exports = test;
15+
```
16+
17+
## example.js
18+
19+
plugins/example/example.js
20+
21+
```js
22+
const { TREM, Logger, logger, MixinManager } = this.#ctx;
23+
24+
// 導入 test.js
25+
// pluginLoader 會處理路徑問題,使用相對路徑即可。
26+
const test = this.#ctx.require("../test/test");
27+
console.log(test);
28+
```

0 commit comments

Comments
 (0)