ffplayout/plugins/sortable.client.ts

7 lines
189 B
TypeScript

import { defineNuxtPlugin } from '#imports'
import { Sortable } from 'sortablejs-vue3'
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.component('Sortable', Sortable)
})