npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

antdv-pro-layout

v4.1.9

Published

Ant Design Pro Layout of Vue, easy to use pro scaffolding.

Downloads

203

Readme

Ant Design Vue Pro Layout

Ant Design Pro Vue 布局,易于使用专业脚手架。

Vue Support NPM version NPM downloads License MIT

中文 | English

安装 Install

npm i antdv-pro-layout

简单使用 Simple Usage

首先,您应该将所需的 antdv-pro-layout 添加到库中。

// main.[js|ts]
import { createApp } from "vue";
import App from "./App.vue";

import "ant-design-vue/dist/reset.css";
import Antd from "ant-design-vue";

import "antdv-pro-layout/dist/style.css";
import { ProLayout, PageContainer } from "antdv-pro-layout";

const app = createApp(App);

app.use(Antd).use(ProLayout).use(PageContainer).mount("#app");

之后,您可以在 Vue 组件中使用专业布局,如下所示:

<template>
  <pro-layout
    :locale="locale"
    :menu-data="menuData"
    v-bind="layoutConf"
    v-model:openKeys="state.openKeys"
    v-model:collapsed="state.collapsed"
    v-model:selectedKeys="state.selectedKeys"
  >
    <router-view />
  </pro-layout>
</template>

<script setup lang="ts">
import { reactive, useRouter } from "vue";
import {
  getMenuData,
  clearMenuItem,
  type MenuDataItem,
} from "antdv-pro-layout";

const locale = (menuData: MenuDataItem) => menuData.meta?.title;
const router = useRouter();

const { menuData } = getMenuData(clearMenuItem(router.getRoutes()));

const state = reactive({
  collapsed: false, // default value
  openKeys: ["/dashboard"], // defualt openKeys
  selectedKeys: ["/welcome"], // default selectedKeys
});

const layoutConf = reactive({
  layout: "side",
  theme: "light", // "dark" | "light",
  menuTheme: "light", // "dark" | "light",
  fixedHeader: true,
  fixSiderbar: true,
  splitMenus: true,
});
</script>

库功能支持 API

函数布局 ProLayout

  • MediaQueryEnum 屏幕尺寸媒体查询枚举对象
  • getMediaScreen 屏幕尺寸
  • useMediaScreen 屏幕尺寸 ref 响应监听
  • PrefersColorSchemeEnum 媒体主题颜色模式枚举对象
  • getPrefersColorScheme 媒体主题颜色模式偏好
  • usePrefersColorScheme 媒体主题颜色模式偏好 ref 响应监听
  • viewTransitionTheme 主题切换视图过渡
  • getMenuData 路由表转出系统菜单
  • clearMenuItem 清除菜单项,属性排除!name 和 meta 隐藏标记

组件布局 ProLayout

| 参数 | 说明 | 类型 | 默认值 | | ------------------------ | ------------------------------------------------------------ | -------------------------------------------------------------- | ------------------ | | title | 布局 LOGO 右侧文本 | string | 'Ant Design Pro' | | logo | 布局 LOGO 图链接 | string | - | | logoStyle | 布局 LOGO 图样式 | object | - | | loading | 布局内容区加载等待状态 | boolean | false | | layout | 菜单布局 | 'side' | 'top' | 'mix' | 'side' | | breadcrumb | 布局内容左上角面包屑 | Object | - | | theme | 全局主题色 | 'light' |'dark' | 'light' | | menuTheme | 菜单导航主题色 | 'light' |'dark' | 'light' | | menuData | 菜单项数据 MenuDataItem[] | Array | [] | | collapsed | 菜单左侧时收起展开 | boolean | true | | collapsedWidth | 菜单左侧时收起宽度大小 | number | 48 | | siderWidth | 菜单左侧时展开宽度大小 | number | 200 | | selectedKeys | 菜单选择高亮 keys | string[] | [] | | openKeys | 菜单选择打开展开 keys | string[] | [] | | fixSiderbar | 菜单左侧列表固定 | boolean | false | | splitMenus | 菜单布局mix分割二级菜单到左侧 | boolean | false | | menuHeaderRender | 渲染菜单头 logo 和标题区域 | v-slot | VNode | (props: BasicLayoutProps) => VNode | false | - | | menuHeaderExtraRender | 渲染菜单头拓展区域 | v-slot | VNode | (props: BasicLayoutProps) => VNode | false | - | | menuFooterRender | 渲染菜单底脚区域 | v-slot | VNode | (props: BasicLayoutProps) => VNode | false | - | | menuItemRender | 渲染菜单项 Menu.Item | v-slot#menuItemRender="menuItem" | - | | menuSubItemRender | 渲染菜单嵌套子项 Menu.SubItem | v-slot#menuSubItemRender="menuItem" | - | | collapsedButtonRender | 渲染菜单收起按钮区域 | v-slot#collapsedButtonRender="collapsed" | - | | fixedHeader | 顶部区域固定 | boolean | false | | headerHeight | 顶部区域高度 | number | 48 | | headerRender | 渲染顶部区域 | v-slot | VNode | (props: BasicLayoutProps) => VNode | - | | headerContentRender | 渲染顶部内容区域,仅布局side有效 | v-slot | (props: BasicLayoutProps) => VNode | - | | headerContentRightRender | 渲染顶部内容右端区域 | v-slot | (props: BasicLayoutProps) => VNode | - | | footerRender | 渲染底部区域 | v-slot | ({ width, ...props }) => VNode | false | | tabRender | 渲染顶部标签页区域 | v-slot | ({ width, ...props }) => VNode | false | | breadcrumbRender | 渲染面包屑导航区域 | v-slot | ({ route, params, routes, paths, h }) => VNode[] | - | | locale | 菜单名国际化函数处理 | Function(menuDataItem?: MenuDataItem) => string | false | false | | collapse | 菜单左侧收起展开触发函数处理 | Function(collapsed: boolean) => void | - |

菜单数据可通过提供的 getMenuDataclearMenuItem 函数转换
例如 const { menuData } = getMenuData(clearMenuItem(routes))

插槽渲染 Custom Render

渲染顶部内容区域 headerContentRender
<template #headerContentRender>
  <div style="background-color: #ff7875">headerContentRender</div>
</template>
<template #headerContentRightRender>
  <a-avatar shape="square" size="small"> Avatar </a-avatar>
</template>
渲染菜单项 menuItemRender Menu.Item
<template #menuItemRender="{ path, meta }">
  <a-menu-item
    :key="path"
    :disabled="meta?.disabled"
    :danger="meta?.danger"
    :icon="meta?.icon"
  >
    <router-link :to="path">
      <span class="ant-pro-menu-item">
        <a-badge count="5" dot>
          <span class="ant-pro-menu-item-title">{{ meta?.title }}</span>
        </a-badge>
      </span>
    </router-link>
  </a-menu-item>
</template>
渲染顶部头区域 breadcrumbRender
<template #breadcrumbRender="{ route, params, routes }">
  <span v-if="routes.indexOf(route) === routes.length - 1">
    {{ route.breadcrumbName }}
  </span>
  <RouterLink v-else :to="{ path: route.path, params }">
    {{ route.breadcrumbName }}
  </RouterLink>
</template>
渲染顶部标签页区域 tabRender
<template #tabRender="{ width, fixedHeader }">
  <div>
    <header
      class="ant-layout-header"
      style="height: 36px; line-height: 36px; background: transparent"
      v-if="fixedHeader"
    ></header>
    <div
      :style="{
        margin: '0',
        height: '36px',
        lineHeight: '36px',
        right: '0px',
        top: '48px',
        position: fixedHeader ? 'fixed' : 'unset',
        width: fixedHeader ? width : '100%',
        overflow: 'hidden',
        zIndex: 14,
        padding: '4px 16px',
        background: '#fff',
        boxShadow: '0 1px 4px #0015291f',
        transition: 'background 0.3s, width 0.2s',
      }"
    >
      tabRender fixedHeader:{{ fixedHeader }} width:{{ width }}
    </div>
  </div>
</template>
渲染底部区域 footerRender
<template #footerRender="{ width, fixedHeader }">
  <div>
    <footer
      class="ant-layout-footer"
      style="height: 48px; line-height: 48px; background: transparent"
      v-if="fixedHeader"
    ></footer>
    <GlobalFooter
      :style="{
        margin: '0',
        height: '48px',
        lineHeight: '48px',
        right: '0px',
        bottom: '0px',
        position: fixedHeader ? 'fixed' : 'unset',
        width: fixedHeader ? width : '100%',
        overflow: 'hidden',
        zIndex: 14,
        background: '#fff',
        boxShadow: '0 1px 4px #0015291f',
        transition: 'background 0.3s, width 0.2s',
      }"
      :links="[
        {
          blankTarget: true,
          title: 'Link 1',
          href: '#',
        },
        {
          blankTarget: false,
          title: 'Link 2',
          href: 'https://gitee.com/TsMask/',
        },
        {
          blankTarget: true,
          title: 'Link 3',
          href: '#',
        },
      ]"
      copyright="Copyright &copy; 2023 Gitee For TsMask"
    >
    </GlobalFooter>
  </div>
</template>

组件页脚 GlobalFooter

| 参数 | 说明 | 类型 | 默认值 | | --------- | -------------- | ---------------------------------------------------------------------------- | --------- | | links | 必填,链接跳转 | Array<{ key?: string; title: string; href: string; blankTarget?: boolean; }> | - | | copyright | 版权声明区域 | v-slot | VNode | (props: BasicLayoutProps) => VNode | false | undefined |

<GlobalFooter
  :links="[
    {
      blankTarget: true,
      title: 'Link 1',
      href: '#',
    },
    {
      blankTarget: false,
      title: 'Link 2',
      href: 'https://gitee.com/TsMask/',
    },
    {
      blankTarget: true,
      title: 'Link 3',
      href: '#',
    },
  ]"
  copyright="Copyright &copy; 2023 Gitee For TsMask"
></GlobalFooter>

组件内容页 PageContainer

包含 antdv 组件 API 属性: PageHeader 页头Affix 固钉

| 参数 | 说明 | 类型 | 默认值 | | -------------- | ----------------------------------------- | -------------------------------------------------------------------------- | --------------- | | loading | 加载状态 | boolean | false | | disableMargin | 布局内容禁用外边距 24px | boolean | false | | flex | 内容布局充满,默认固定宽度 1200px | boolean | false | | fixed-header | 固定 PageHeader 到顶部 | boolean | false | | affixProps | 固钉的配置 | affix | {offsetTop: 48} | | pageFooter | 渲染页脚插槽 | VNode | v-slot | - | | pageHeader | 渲染页头替换 PageHeader 组件插槽 | VNode | v-slot | - | | ... | PageHeader 属性 | PageHeader 页头 API | - | | breadcrumb | PageHeader 面包屑的配置,{}配置不显示 | breadcrumb | - | | content | PageHeader 默认插槽 | VNode | v-slot | - | | contentExtra | PageHeader 默认插槽右侧空间 | VNode | v-slot | - | | tab-list | PageHeader 插槽 footer 无时,显示标签列表 | Array<{key: string, tab: any}> | - | | tab-active-key | 标签列表当前激活 key | string | - | | tab-change | 标签列表 tab 被点击的回调 | (key) => void | - | | tab-props | 标签列表标签页属性 | tabs | - |

基本使用示例 Basic Usage

项目目录下 演示测试 or 项目引用示例

测试stackblitz

源项目仓库分支 Branch

来自 @ant-design-vue/pro-layout

当前版本,还在持续更新 v4

持续维护 Continuous Maintenance

# 安装所需依赖
npm install

# 打包生成dist目录含d.ts文件
npm run build