w-ui-v1 1.0.22 → 1.0.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "w-ui-v1",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "description": "w-ui",
5
5
  "author": "wgxshh",
6
6
  "license": "ISC",
package/w-menu/w-menu.vue CHANGED
@@ -121,7 +121,7 @@ function queryList() {
121
121
  <template>
122
122
  <z-paging ref="paging" v-model="menuList" @query="queryList">
123
123
  <template #top>
124
-
124
+ <slot name="top"></slot>
125
125
  </template>
126
126
  <view>
127
127
  <view v-if="filtermenu.length > 0">
@@ -148,7 +148,7 @@ function queryList() {
148
148
  @select="({ item }) => { sheetGotoPage(item) }" />
149
149
  </view>
150
150
  <template #bottom>
151
-
151
+ <slot name="bottom"></slot>
152
152
  </template>
153
153
  </z-paging>
154
154
  </template>