@sbs-plugin/vue2-image-process 0.0.8 → 0.0.9
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 -2
- package/dist/demo.html +1 -1
- package/dist/{vue2-image-processing.common.js → vue2-image-process.common.js} +878 -68
- package/dist/vue2-image-process.css +1 -0
- package/dist/{vue2-image-processing.umd.js → vue2-image-process.umd.js} +878 -68
- package/dist/vue2-image-process.umd.min.js +1 -0
- package/package.json +3 -3
- package/dist/vue2-image-processing.css +0 -1
- package/dist/vue2-image-processing.umd.min.js +0 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Import the plugin and register it in your project's entry file (e.g., main.js or
|
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
31
|
import ImageProcessing from '@sbs-plugin/vue2-image-process';
|
|
32
|
-
import '@sbs-plugin/vue2-image-process/dist/
|
|
32
|
+
import '@sbs-plugin/vue2-image-process/dist/vue2-image-process.css'
|
|
33
33
|
|
|
34
34
|
app.use(ImageProcessing, {
|
|
35
35
|
theme: {
|
|
@@ -46,7 +46,7 @@ app.use(ImageProcessing, {
|
|
|
46
46
|
:src="xxxxx"
|
|
47
47
|
@update:visible="xxxxxx"
|
|
48
48
|
/>
|
|
49
|
-
<
|
|
49
|
+
<ImageMatting
|
|
50
50
|
:visible="xxxxxx"
|
|
51
51
|
:src="xxxxxxx"
|
|
52
52
|
@update:visible="xxxxxxxx"
|
package/dist/demo.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><meta charset="utf-8"><title>vue2-image-
|
|
1
|
+
<!doctype html><meta charset="utf-8"><title>vue2-image-process demo</title><script src="./vue2-image-process.umd.js"></script><link rel="stylesheet" href="./vue2-image-process.css"><script>console.log(vue2-image-process)</script>
|