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

@zt8989/element-pro-layout

v0.1.2

Published

element-ui pro layout, easy to use pro scaffolding.

Downloads

1

Readme

English | 简体中文

npm i @zt8989/element-pro-layout --save
// 或者
yarn add @zt8989/element-pro-layout
import ProLayout from '@zt8989/element-pro-layout'

export default {
  name: 'BasicLayout',
  render () {
    return (
      <ProLayout>
        <router-view />
      </ProLayout>
    )
  }
}
<template>
  <pro-layout
    :menus="menus"
    :collapsed="collapsed"
    :theme="theme"
    :layout="layout"
    :contentWidth="contentWidth"
    :auto-hide-header="autoHideHeader"
    :mediaQuery="query"
    :isMobile="isMobile"
    :handleMediaQuery="handleMediaQuery"
    :handleCollapse="handleCollapse"
  >
    <template v-slot:menuHeaderRender>
      <div>
        <img src="../assets/logo.svg" />
        <h1>Pro Layout</h1>
      </div>
    </template>
    <template v-slot:rightContentRender>
      <div :class="['ant-pro-global-header-index-right', layout === 'topmenu' && `ant-pro-global-header-index-${theme}`]">
        rightContentRender
      </div>
    </template>
    <template v-slot:footerRender>
      <div>footerRender</div>
    </template>
    <setting-drawer navTheme="dark" />
    <router-view />
  </pro-layout>
</template>

<script>
import ProLayout, { SettingDrawer } from '@ant-design-vue/pro-layout'
import { asyncRouterMap } from '../config/router.config'

export default {
  name: 'BasicLayout',
  data () {
    return {
      menus: [],
      collapsed: false,
      autoHideHeader: false,
      query: {},
      layout: 'sidemenu',
      contentWidth: 'Fluid',
      theme: 'dark',
      isMobile: false
    }
  },
  created () {
    this.menus = asyncRouterMap.find(item => item.path === '/').children
  },
  methods: {
    handleMediaQuery (query) {
      this.query = query
      if (this.isMobile && !query['screen-xs']) {
        this.isMobile = false
        return
      }
      if (!this.isMobile && query['screen-xs']) {
        this.isMobile = true
        this.collapsed = false
      }
    },
    handleCollapse (collapsed) {
      this.collapsed = collapsed
    }
  },
  components: {
  	SettingDrawer
  }
}
</script>

API

ProLayout

| Property | Description | Type | Default Value | | --- | --- | --- | --- | | title | layout 的 左上角 的 title | VNode | String | 'Ant Design Pro' | | logo | layout 的 左上角 logo 的 url | VNode | render | - | | showLogo | 显示logo | boolean | false | | menuHeaderRender | 渲染 logo 和 title | v-slot | VNode | (logo,title)=>VNode | false | - | | menus | Vue-router routes 属性 | Object | [{}] | | collapsed | 控制菜单的收起和展开 | boolean | true | | isMobile | 是否为手机模式 | boolean | false | | handleCollapse | 菜单的折叠收起事件 | (collapsed: boolean) => void | - | | withoutAnimation | 不显示过渡动画 | boolean | false | | fixedHeader | 固定头部 | boolean | false | | handleMediaQuery | 媒体查询回调 | (isMobile: boolean) => void | - | | headerRender | 自定义头的 render 方法 | (props: BasicLayoutProps) => VNode | - | | rightContentRender | 自定义头右部的 render 方法 | (props: HeaderViewProps) => VNode | - | | collapsedButtonRender | 自定义 侧栏收缩按钮 的方法 | (collapsed: boolean) => VNode | - | | breadcrumbRender | 自定义面包屑渲染方法 | v-slot |

ProLayout(暂未实现)

| Property | Description | Type | Default Value | | --- | --- | --- | --- | | footerRender | 自定义 底部区域内容 | (props: BasicLayoutProps) => VNode | - | | i18nRender | 本地化渲染函数 (this.$t) | Function (key: string) => string | false | false | | mediaQuery | ProLayout 当前的媒体查询 | Array | - |

PageHeaderWrapper(暂未实现)

| Property | Description | Type | Default Value | | --- | --- | --- | --- | | content | 内容区 | VNode | v-slot | - | | extra | 扩展区域 | VNode | v-slot | - | | extraContent | 扩展内容区 | VNode | v-slot | - | | tabList | Tabs 导航 | Array<{key: string, tab: sting}> | - | | tab-change | Tab 改变事件 | (key) => void | - | | tab-active-key | 当前 Tab 选中项 | string | - |

SettingDrawer(暂未实现)

{settings}

| Property | Description | Type | Default Value | | ---- | ---- | ---- | ---- | | theme | 主题 | dark light realDark | light | | layout | 布局模式 | sidemenu topmenu | sidemenu | | primaryColor | 主色调 (*仅开发环境生效) | #1890ff | |