### Install Fluid DnD Package Source: https://fluid-dnd.netlify.app/vue/introduction/introduction/index Instructions for installing the Fluid DnD library using common JavaScript package managers like npm, yarn, and pnpm. ```Shell # with npm: npm i fluid-dnd # with yarn: yarn add fluid-dnd # with pnpm: pnpm i fluid-dnd ``` -------------------------------- ### Global Setup of Fluid DnD Composable in Vue Source: https://fluid-dnd.netlify.app/vue/introduction/introduction/index Demonstrates how to make the `useDragAndDrop` composable available throughout a Vue application by using Vue's `provide/inject` mechanism in the main application entry file. ```Vue import { createApp } from "vue"; import App from './App.vue'; import { useDragAndDrop } from "fluid-dnd/vue"; const app = createApp(App); app.provide('useDragAndDrop', useDragAndDrop); app.mount('#app'); ``` -------------------------------- ### Local Import of Fluid DnD Composable in Vue Source: https://fluid-dnd.netlify.app/vue/introduction/introduction/index Shows how to import the `useDragAndDrop` composable directly into a Vue component's script section for local use. ```Vue ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.