Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

split-pane-vue3

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

split-pane-vue3

基于 Vue3 的面板分割

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Vue Page Split

基于 Vue3 的可拖拉缩放的分割面板

Vue2 版

English | 简体中文

📦 安装

$ npm i vue3-page-split -S

🔨 使用

在 Vue 项目中使用 PageSplit

<template>
  <SplitPane
    :distribute="0.5"
    :lineThickness="6"
    :isVertical="false"
    @resizeLineStartMove="onresizeLineStartMove"
    @resizeLineMove="onResizeLineMove"
    @resizeLineEndMove="onresizeLineEndMove"
  >
    <template v-slot:first>
      <h1>A</h1>
    </template>
    <template v-slot:second>
      <h1>B</h1>
    </template>
  </SplitPane>
</template>
<script>
import PageSplit from "vue3-page-split";
import "vue3-page-split/dist/style.css";

export default {
  components: {
    SplitPane
  },
  methods: {
    onresizeLineStartMove: function() {
      console.log("onresizeLineStartMove");
    },
    onResizeLineMove: function(e) {
      console.log("onResizeLineMove :>> ", e);
    },
    onresizeLineEndMove: function() {
      console.log("onresizeLineEndMove");
    }
  }
};
</script>

🔠 属性

属性名类型默认值说明
distributeNumber0.5面板比例,取值范围 0~1
isVerticalBooleantrue切割模式(true:垂直切割,false:水平切割)
lineThicknessNumber6分割线的宽度
hasLineTipBooleantrue分割线中是否有三条杠
backgroundColorString"#a0cfff"分割线的背景颜色
hoverColorString"#409eff"分割线的鼠标hover后的颜色
hasBoxShadowBooleantrue分割线是否有box-shadow样式
firstMinValueNumber0左组件/上组件的最小宽度/高度,必须>=0
secondMinValueNumber0右组件/下组件的最小宽度/高度,必须>=0
isFirstComponentMaskedBooleanfalse左组件/上组件是否需要遮挡层
isSecondComponentMaskedBooleanfalse右组件/下组件是否需要遮挡层

备注:遮挡层用于捕获鼠标事件,主要在组件内包含iframe时使用,因为iframe会“吞噬”鼠标事件

🎺 事件

本组件会触发3个事件:

事件名说明返回值
resizeLineStartMove拖拽开始-
resizeLineMove拖拽中event对象
resizeLineEndMove拖拽结束-

📷 效果图

如果图片加载不出,请到 Homepage 或 Repository 查看

动效图1 效果图2

Keywords

FAQs

Package last updated on 11 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc