ffplayout/frontend/plugins/sortable.client.ts

7 lines
189 B
TypeScript
Raw Normal View History

import { defineNuxtPlugin } from '#imports'
2023-01-11 04:54:25 -05:00
import { Sortable } from 'sortablejs-vue3'
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.component('Sortable', Sortable)
})