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

vue-split-panel-ts

v1.0.3

Published

split panel vue3 ts 面板分割

Downloads

24

Readme

split panel vue3 ts 面板分割 点击访问线上演示demo

使用环境 :VUE3、TS

    1. vue: "^3.3.4"
    2. vite: "^4.4.6"
    3. npm : 10.2.0
    4. node : v21.1.0

参数配置 props:

  mode?: Modes   // 分割模式
  triggerSize?: string   // 触发分割元素大小
  ratio?: number     // 分割比例,大于0小于1
  min?: number  // mode : horizontal 时使用 设置面板最小高度值
  max?: number  // mode : vertical 时使用 设置面板最大高度值
  bgStartPanel?: string  // 第一个面板默认背景
  bgEndPanel?: string    // 第二个面板默认背景
  bgTrigger?: string     // 触发分割元素默认背景
  bgTriggerHover?: string    // 触发分割元素鼠标移入背景

使用教程:

1. npm 安装插件:

npm install -S vue-split-panel-ts

2. script 引入挂载:

<script setup lang="ts">
import SplitPanel from "vue-split-panel-ts/SplitPanel.vue";
</script>

3. template 具体使用方式:

<template>
  <div>
    <h2>水平分割面板:</h2>
    <SplitPanel :ratio="7 / 10"/>
    <h2>垂直分割面板:</h2>
    <SplitPanel mode="vertical" :ratio="4 / 10">
      <template #start>
        <div v-for="i in 40" :key="i">学习如登山,不畏艰难,持之以恒,必能登峰造极。 {{ i }}</div>
      </template>
      <template #end>
        <div v-for="i in 40" :key="i">坚持是学习的最好伙伴,只要你不放弃,知识的大门总会为你敞开。 {{ i }}</div>
      </template>
    </SplitPanel>
  </div>
</template>

截至 2024-04-24 正在开发中 ,使用过程如有困难或改进方案可以发邮箱联系我改进:[email protected]