@fecp/mobile 1.0.66 → 1.0.67
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/es/packages/mobile/src/components/navigation/navBar/NavBar.vue.mjs +5 -2
- package/es/packages/mobile/src/components/navigation/tabbarItem/TabbarItem.vue.mjs +2 -2
- package/lib/packages/mobile/src/components/navigation/navBar/NavBar.vue.js +4 -1
- package/lib/packages/mobile/src/components/navigation/tabbarItem/TabbarItem.vue.js +1 -1
- package/package.json +1 -1
|
@@ -2,13 +2,16 @@
|
|
|
2
2
|
/* empty css */
|
|
3
3
|
/* empty css */
|
|
4
4
|
/* empty css */
|
|
5
|
-
import { createBlock, openBlock,
|
|
5
|
+
import { createBlock, openBlock, mergeProps, createSlots, renderList, withCtx, renderSlot } from "vue";
|
|
6
6
|
import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
7
7
|
import { NavBar } from "../../../../../../node_modules/.pnpm/vant@4.9.17_vue@3.5.13_typescript@5.7.3_/node_modules/vant/es/nav-bar/index.mjs";
|
|
8
8
|
const _sfc_main = {};
|
|
9
9
|
function _sfc_render(_ctx, _cache) {
|
|
10
10
|
const _component_van_nav_bar = NavBar;
|
|
11
|
-
return openBlock(), createBlock(_component_van_nav_bar,
|
|
11
|
+
return openBlock(), createBlock(_component_van_nav_bar, mergeProps(_ctx.$attrs, {
|
|
12
|
+
fixed: "",
|
|
13
|
+
"safe-area-inset-top": ""
|
|
14
|
+
}), createSlots({ _: 2 }, [
|
|
12
15
|
renderList(_ctx.$slots, (item, key) => {
|
|
13
16
|
return {
|
|
14
17
|
name: key,
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* empty css */
|
|
4
4
|
/* empty css */
|
|
5
5
|
/* empty css */
|
|
6
|
-
import { createBlock, openBlock,
|
|
6
|
+
import { createBlock, openBlock, mergeProps, withCtx, createTextVNode, toDisplayString } from "vue";
|
|
7
7
|
import { TabbarItem } from "../../../../../../node_modules/.pnpm/vant@4.9.17_vue@3.5.13_typescript@5.7.3_/node_modules/vant/es/tabbar-item/index.mjs";
|
|
8
8
|
const _sfc_main = {
|
|
9
9
|
__name: "TabbarItem",
|
|
@@ -16,7 +16,7 @@ const _sfc_main = {
|
|
|
16
16
|
setup(__props) {
|
|
17
17
|
return (_ctx, _cache) => {
|
|
18
18
|
const _component_van_tabbar_item = TabbarItem;
|
|
19
|
-
return openBlock(), createBlock(_component_van_tabbar_item,
|
|
19
|
+
return openBlock(), createBlock(_component_van_tabbar_item, mergeProps(_ctx.$attrs, { replace: "" }), {
|
|
20
20
|
default: withCtx(() => [
|
|
21
21
|
createTextVNode(toDisplayString(__props.title), 1)
|
|
22
22
|
]),
|
|
@@ -10,7 +10,10 @@ const index = require("../../../../../../node_modules/.pnpm/vant@4.9.17_vue@3.5.
|
|
|
10
10
|
const _sfc_main = {};
|
|
11
11
|
function _sfc_render(_ctx, _cache) {
|
|
12
12
|
const _component_van_nav_bar = index.NavBar;
|
|
13
|
-
return vue.openBlock(), vue.createBlock(_component_van_nav_bar, vue.
|
|
13
|
+
return vue.openBlock(), vue.createBlock(_component_van_nav_bar, vue.mergeProps(_ctx.$attrs, {
|
|
14
|
+
fixed: "",
|
|
15
|
+
"safe-area-inset-top": ""
|
|
16
|
+
}), vue.createSlots({ _: 2 }, [
|
|
14
17
|
vue.renderList(_ctx.$slots, (item, key) => {
|
|
15
18
|
return {
|
|
16
19
|
name: key,
|
|
@@ -18,7 +18,7 @@ const _sfc_main = {
|
|
|
18
18
|
setup(__props) {
|
|
19
19
|
return (_ctx, _cache) => {
|
|
20
20
|
const _component_van_tabbar_item = index.TabbarItem;
|
|
21
|
-
return vue.openBlock(), vue.createBlock(_component_van_tabbar_item, vue.
|
|
21
|
+
return vue.openBlock(), vue.createBlock(_component_van_tabbar_item, vue.mergeProps(_ctx.$attrs, { replace: "" }), {
|
|
22
22
|
default: vue.withCtx(() => [
|
|
23
23
|
vue.createTextVNode(vue.toDisplayString(__props.title), 1)
|
|
24
24
|
]),
|