zhengyiming
2025-02-21 a3be4bd8a96df6b27e4f0d3883d661d9cb64d1fc
apps/h5/src/components/NavigationBar/navBar.ts
New file
@@ -0,0 +1,14 @@
export const navigationBarProps = {
  mode: {
    type: String as PropType<'light' | 'dark'>,
    default: 'light',
  },
  plain: {
    type: Boolean,
    default: false,
  },
  hasBorder: {
    type: Boolean,
    default: false,
  },
};