1.0.94-beta • Published 2 years ago

draggable-resizable-vue3 v1.0.94-beta

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

draggable-resizable-vue3

Latest Version on NPM Software License npm

This is Vue 3 (Composition API) library for draggable and resizable elements with custom grid.

preview

Get started

Roadmap

  • :white_check_mark: Rewrite to Composition API.
  • :white_check_mark: Create docs.
  • :black_square_button: Test all props, slots and events.
  • :black_square_button: Add as much as possible examples of usage to the docs.
  • :black_square_button: Release the stable 1.1.0 version.

Installation

$ npm install draggable-resizable-vue3

Register (DraggableResizableVue and DraggableResizableContainer components) globally:

// main.js
import { createApp } from "vue";
import App from "./App.vue";
import DraggableResizableVue from "draggable-resizable-vue3";
const app = createApp(App);
app.use(DraggableResizableVue);
app.mount("#app");

Register locally (composition API):

<script setup>
import DraggableResizableVue from "draggable-resizable-vue3";
</script>

Register locally with the container component:

<script setup>
import {
  DraggableResizableVue,
  DraggableResizableContainer,
} from "draggable-resizable-vue3";
</script>

Initially, this is a fork of the Vue 2 library vue-draggable-resizable. Now it is being developed independently from the source.

1.0.93-beta

2 years ago

1.0.7-beta

2 years ago

1.0.94-beta

2 years ago

1.0.8-beta

2 years ago

1.0.92-beta

2 years ago

1.0.91-beta

2 years ago

1.0.9-beta

2 years ago

1.0.6-beta

2 years ago

1.0.5-beta

2 years ago

1.0.4-beta

2 years ago

1.0.2-beta

2 years ago

1.0.3-beta

2 years ago

1.0.1-beta

2 years ago

1.0.0

2 years ago