@npm_lx/signature-pad-for-vue3 0.0.2 → 0.0.4
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 +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,6 +10,7 @@ npm install @npm_lx/signature-pad-for-vue3
|
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
## 组件预览
|
|
13
|
+
需要你到本项目github上面clone项目,然后在项目根目录下执行以下命令,才能预览组件运行效果
|
|
13
14
|
```bash
|
|
14
15
|
pnpm install
|
|
15
16
|
pnpm run dev
|
|
@@ -39,7 +40,7 @@ pnpm run dev
|
|
|
39
40
|
|
|
40
41
|
<script setup>
|
|
41
42
|
import { ref } from 'vue'
|
|
42
|
-
import SignaturePad from '@
|
|
43
|
+
import SignaturePad from '@npm_lx/signature-pad-for-vue3'
|
|
43
44
|
|
|
44
45
|
const signaturePadRef = ref(null)
|
|
45
46
|
|