GithubHelp home page GithubHelp logo

dbomfim / vue-resizable-panels Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mujahidfa/vue-resizable-panels

0.0 0.0 0.0 124 KB

An intuitive resizable panel groups/layouts components for Vue.

JavaScript 1.22% TypeScript 65.52% CSS 3.22% HTML 1.34% Vue 28.70%

vue-resizable-panels's Introduction

vue-resizable-panels

An intuitive resizable panel groups/layouts components for Vue.

Based on react-resizable-panels.

Installation

Install the package:

npm install vue-resizable-panels
# or
pnpm install vue-resizable-panels
# or
yarn add vue-resizable-panels

Import the components directly:

<script setup lang="ts">
import { Panel, PanelGroup, PanelResizeHandle } from "vue-resizable-panels";
</script>

<template>
  <div>
    <PanelGroup direction="horizontal">
      <Panel :defaultSize="20" :minSize="20">
        <div>left</div>
      </Panel>
      <PanelResizeHandle />
      <Panel :minSize="30">
        <div>middle</div>
      </Panel>
      <PanelResizeHandle />
      <Panel :defaultSize="20" :minSize="20">
        <div>right</div>
      </Panel>
    </PanelGroup>
  </div>
</template>

For more examples, check out the demo.

For API reference, check out the react-resizable-panels's docs. The API is almost exactly the same, with minor differences as follows:

  • No children prop. This is taken care of by slots in Vue.
  • No className prop. You can freely pass CSS classes via the class attribute as Vue inherits attributes by default.

Development

pnpm install

cd packages/vue-resizable-panels/
pnpm dev

pnpm build
cd ../demo/
pnpm dev

Credits

This project was heavily inspired by the react-resizable-panels library so please give some love to the library as well!

Credits to @bvaughn (GitHub) for creating react-resizable-panels!

vue-resizable-panels's People

Contributors

mujahidfa avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.