jobdone-shared-files 0.0.1-beta.86 → 0.0.1-beta.87
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 +14 -1
- package/package.json +1 -1
- package/vueLoadingOverlay.vue +0 -4
package/README.md
CHANGED
|
@@ -40,7 +40,20 @@
|
|
|
40
40
|
| 4. | 開啟loading | `isLoading.value = true;` |
|
|
41
41
|
| 5. | 關閉loading | `isLoading.value = false;` |
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
### vue-loading-overlay 可用變數:
|
|
44
|
+
| # | 參數 Attribute | 型別 Type | 預設值 Default | 說明Description |
|
|
45
|
+
| --- | -------------- | --------- | -------------- | ---------------------------------------------------- |
|
|
46
|
+
| 1. | full-page | `Boolean` | `true` | 是否填滿整個視窗。<br>為False時,則填滿放置位置的父層 |
|
|
47
|
+
|
|
48
|
+
>其他可用變數(統一樣式不推薦修改):
|
|
49
|
+
>
|
|
50
|
+
| # | 參數 Attribute | 型別 Type | 預設值 Default | 說明Description |
|
|
51
|
+
| --- | -------------- | --------- | -------------- | ------------------ |
|
|
52
|
+
| 1. | is-active | `Boolean` | `false` | 開啟 / 關閉 |
|
|
53
|
+
| 2. | loader | `String` | `bars` | 圖案樣式<br>spinner / dots / bars 三種可選|
|
|
54
|
+
| 3. | colors | `String` | `#fff` | 圖案顏色|
|
|
55
|
+
| 4. | background-color | `String` | `#000` | 遮罩顏色|
|
|
56
|
+
| 5. | opacity | `Number ` | `0.5` | 遮罩透明度|
|
|
44
57
|
|
|
45
58
|
|
|
46
59
|
----
|
package/package.json
CHANGED