wupengfei
2 天以前 c8c2f28f9008989f8035da5e78c262b326707065
apps/h5/src/components/NavigationBar/commonNavigationBar.ts
New file
@@ -0,0 +1,25 @@
import { navigationBarProps } from './navBar';
export const commonNavigationBarProps = {
  title: {
    type: String,
    default: '',
  },
  showLeftArrow: {
    type: Boolean,
    default: true,
  },
  showNavigationBar: {
    type: Boolean,
    default: true,
  },
  navigationArrowWhite: {
    type: Boolean,
    default: false,
  },
  isAbsolute: {
    type: Boolean,
    default: true,
  },
  ...navigationBarProps,
};