7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
|
import { defineNuxtPlugin } from '#app'
|
||
|
import { Sortable } from 'sortablejs-vue3'
|
||
|
|
||
|
export default defineNuxtPlugin((nuxtApp) => {
|
||
|
nuxtApp.vueApp.component('Sortable', Sortable)
|
||
|
})
|