-
Compatibility: Compatible with server-rendered apps, PC, and mobile devices.
-
Resizable Component: Allows elements to be resized with optional constraints. It supports the following features:
- Customizable axis of resizing (
x
,y
, orboth
). - Optional locking of aspect ratio.
- Minimum and maximum size constraints.
- Customizable handles for resizing, including the ability to use custom Vue components or functions as handles.
- Integration with a draggable component (
DraggableCore
) for smooth resizing. - Emits events for resize start, resize, and resize stop, allowing for custom logic and integration.
- Supports transform scale adjustments, useful for elements within transformed parents.
- Customizable axis of resizing (
-
ResizableBox Component: A higher-level component that wraps the
Resizable
component, providing a simpler interface for common use cases. It includes:- All features of the
Resizable
component. - Direct control over the size of the box through reactive state, automatically updating the size during resize actions.
- Easy integration with slots to place custom content inside the resizable box.
- Predefined styles for immediate use, with the option to override or extend these styles via props.
- All features of the
First, you need to install the package. Run the following command in your project directory:
npm install @v3layout/vue-resizable
or if you prefer using Yarn:
yarn add @v3layout/vue-resizable
or if you prefer using Pnpm:
pnpm add @v3layout/vue-resizable
In your Vue component, import @v3layout/vue-resizable
:
import { ResizableBox, Resizable } from "@v3layout/vue-resizable";
Now, you can use the Draggable
component in your Vue application. Wrap any element with <Draggable>
to make it draggable:
<template>
<ResizableBox className="box" :width="200" :height="200">
<span class="text">I can now resize the box</span>
</ResizableBox>
</template>
<script>
import { ResizableBox } from "@v3layout/vue-resizable";
export default {
components: {
ResizableBox,
},
};
</script>
<style></style>
That's it! You've successfully integrated resizable functionality into your Vue application. Customize it further according to your needs.
A simple component for making elements resizable box.
<ResizableBox className="box" :width="200" :height="200">
<span class="text">{{"<ResizableBox>"}}</span>
</ResizableBox>
const {Resizable} = require('@v3layout/vue-resizable');
// ES6
import { Resizable } from '@v3layout/vue-resizable';
const Example = defineComponent({
const state = reactive({
width: 200,
height: 200
});
setup () {
const onResize = (event, {node, size, handle}) => {
state.width = size.width
state.height = size.height
};
return () => (
<Resizable height={this.state.height} width={this.state.width} fnResize={this.onResize}>
<div className="box" style={{width: this.state.width + 'px', height: this.state.height + 'px'}}>
<span>Contents</span>
</div>
</Resizable>
)
}
})
const {ResizableBox} = require('@v3layout/vue-resizable');
// ES6
import { ResizableBox } from '@v3layout/vue-resizable';
const Example = defineComponent({
const state = reactive({
width: 200,
height: 200
});
setup () {
const onResize = (event, {node, size, handle}) => {
state.width = size.width
state.height = size.height
};
return () => (
<ResizableBox width={200} height={200} draggableOpts={{grid: [25, 25]}}
minConstraints={[100, 100]} maxConstraints={[300, 300]}>
<span>Contents</span>
</ResizableBox>
)
}
})
These props apply to both <Resizable>
and <ResizableBox>
. Unknown props that are not in the list below will be passed to the child component.
type ResizeCallbackData = {
node: HTMLElement,
size: {width: number, height: number},
handle: ResizeHandleAxis
};
type ResizeHandleAxis = 's' | 'w' | 'e' | 'n' | 'sw' | 'nw' | 'se' | 'ne';
type ResizableProps {
axis: 'both' | 'x' | 'y' | 'none' = 'both',
className?: string,
draggableOpts?: Object,
handle?: ((resizeHandleAxis: ResizeHandleAxis) => VNode) | VNode,
handleSize: [number, number],
lockAspectRatio: boolean,
minConstraints: [number, number],
maxConstraints: [number, number],
fnResizeStop?: (e: Event, data: ResizeCallbackData) => void,
fnResizeStart?: (e: Event, data: ResizeCallbackData) => void,
fnResize?: (e: Event, data: ResizeCallbackData) => void,
resizeHandles: ResizeHandleAxis[],
transformScale: number,
width: number,
height: number,
hoverHandles?: boolean
}
The following props can also be used on <ResizableBox>
:
{
style?: Object
}
If a width
or height
is passed to <ResizableBox>
's style
prop, it will be ignored as it is required for internal function.
If you override the resize handle, we expect that any ref
passed to your new handle with represent the underlying DOM element.
This is required, as vue-resizable
must be able to access the underlying DOM node to attach handlers and measure position deltas.
There are a few ways to do this:
This requires no special treatment.
<Resizable handle={<div class="foo" />} />
You can define a function as a handle, which will simply receive an axis (see above ResizeHandleAxis
type) and ref. This may be more clear to read, depending on your coding style.
const MyHandle = (props) => {
return <div ref={props.innerRef} className="foo" {...props} />;
};
<Resizable
handle={(handleAxis, ref) => (
<MyHandle
innerRef={ref}
className={`foo handle-${handleAxis}`}
{...props}
/>
)}
/>;