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

fast-divider

v1.0.4

Published

screen divider

Downloads

27

Readme

vue3 分屏滑动组件

使用

全局引入

import 'fast-divider/lib/style.css'
import fastDivider from 'fast-divider'

const app = createApp(App)
app.use(fastDivider)

按需引入

// js
import 'fast-divider/lib/style.css'
import { FastDivider } from 'fast-divider'

// template
<fast-divider></fast-divider>

查看实例

点我前往查看

组件属性

| 属性 | 类型 | 默认值 | 说明 | | ------- | ------- | ------- | ------- | |vertical|boolean|false|是否垂直方向, true:垂直| |transfer|boolean|false|是否拖动传递, true:传递, 即拖动的分屏的宽度已经达到最小宽度, 是否传递压缩下一个分屏| |splitSize|number|10|拖动器宽度| |splitColor|string|#eee|拖动器背景色| |splitIconColor|string|#475669|拖动器图标色| |panes|array|[]|分屏配置Pane|

分屏配置Pane

| 属性 | 类型 | 默认值 | 说明 | | ------- | ------- | ------- | ------- | |size|number|100|单位px, 每个分屏的初始宽度| |min|number|0|单位px, 每个分屏的最小宽度|

Slot说明

每个分屏都会给出一个slot, slot的名字为 divider_

| 属性 | 类型 | 说明 | | ------- | ------- | ------- | |pane|Pane|分屏配置Pane| |index|number|slot所属index| |size|number|单位px, 当前宽度|

使用Sample

<template>
  <div class="main">
    <fast-divider vertical transfer :panes="[{ size: 50, min: 30 }, { size: 400 }, {}]" :split-size="10">
      <template #divider_0="{ pane, size, index }"><div class="pane p1">纵向分屏, 最小高度30, 拖动传递</div></template>
      <template #divider_1="{ pane, size, index }">
        <fast-divider :panes="[{ size: 200, min: 100 }, { size: 300, min: 60 }, {}]" :split-size="10" class="pane_container">
          <template #divider_0="{ pane, size, index }"><div class="pane p2">横向分屏<br />最小宽度100</div></template>
          <template #divider_1="{ pane, size, index }"><div class="pane p2">横向分屏<br />最小宽度60<br />拖动不传递</div></template>
          <template #divider_2="{ pane, size, index }"><div class="pane p2">横向分屏<br />没有最小宽度</div></template>
        </fast-divider>
      </template>
      <template #divider_2="{ pane, size, index }">
        <div class="pane p1">纵向分屏, 没有最小高度, 拖动传递</div>
      </template>
    </fast-divider>
  </div>
</template>

<script setup>
import 'fast-divider/lib/style.css'
import { FastDivider } from 'fast-divider'
</script>

<style scoped>
.main {
  width: 100%;
  height: 500px;
  margin: 0;
}
.main .pane_container {
  width: 100%;
  height: 100%;
}
.main .pane {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.main .pane.p1 {
  background: lightblue;
}
.main .pane.p2 {
  background: lightgreen;
}
</style>