wui-components-v2 1.1.81 → 1.1.82

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.
@@ -35,6 +35,10 @@ const props = defineProps({
35
35
  type: Boolean,
36
36
  default: false,
37
37
  },
38
+ showFooter: {
39
+ type: Boolean,
40
+ default: true,
41
+ },
38
42
  })
39
43
  const languageStore = useLanguageStore()
40
44
  const themeConfig = ref<any>({})
@@ -164,7 +168,7 @@ onMounted(() => {
164
168
  </view>
165
169
 
166
170
  <!-- 底部信息 -->
167
- <view class="footer-section">
171
+ <view v-if="props.showFooter" class="footer-section">
168
172
  <view class="footer-line" />
169
173
  <text class="footer-text">已经到底了</text>
170
174
  <view class="footer-line" />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wui-components-v2",
3
- "version": "1.1.81",
3
+ "version": "1.1.82",
4
4
  "description": "wui 组件库",
5
5
  "author": "wgxshh",
6
6
  "license": "MIT",