leiting-bim 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
### 安装SDK
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
|
-
npm install
|
|
43
|
+
npm install leiting-bim
|
|
44
44
|
# 或
|
|
45
|
-
yarn add
|
|
45
|
+
yarn add leiting-bim
|
|
46
46
|
# 或
|
|
47
|
-
pnpm add
|
|
47
|
+
pnpm add leiting-bim
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
**基础使用示例**
|
|
@@ -54,6 +54,9 @@ pnpm add leitingBIM
|
|
|
54
54
|
<LeiTingBIM @register="register" @ready="handleReady" />
|
|
55
55
|
</template>
|
|
56
56
|
<script setup>
|
|
57
|
+
|
|
58
|
+
import { LeiTingBIM , useLeiTing } from 'leiting-bim';
|
|
59
|
+
|
|
57
60
|
const files = [
|
|
58
61
|
{
|
|
59
62
|
modelName: '教学楼项目',
|