vue-grid-layout icon indicating copy to clipboard operation
vue-grid-layout copied to clipboard

Known alternative using Vue3?

Open geovaneo opened this issue 3 years ago • 3 comments

Anyone has found an alternative working with Vue3?

geovaneo avatar Jul 02 '22 01:07 geovaneo

I got this working on Nuxt v3 which uses Vue 3 with the following: npm i vue-grid-layout@next which should install the beta release of this package which has vue 3 support.

For just vue:

import VueGridLayout from 'vue-grid-layout'
Vue.use(VueGridLayout)

For nuxt:

import VueGridLayout from 'vue-grid-layout'

export default defineNuxtPlugin((nuxtApp) => {
    nuxtApp.vueApp.use(VueGridLayout)
})

crotanite avatar Jul 24 '22 12:07 crotanite

I got this working on Nuxt v3 which uses Vue 3 with the following: npm i vue-grid-layout@next which should install the beta release of this package which has vue 3 support.

For just vue:

import VueGridLayout from 'vue-grid-layout'
Vue.use(VueGridLayout)

For nuxt:

import VueGridLayout from 'vue-grid-layout'

export default defineNuxtPlugin((nuxtApp) => {
    nuxtApp.vueApp.use(VueGridLayout)
})

Can it work normally? Is there anything abnormal?

LazyJoke avatar Jul 26 '22 11:07 LazyJoke

Try using the module vue3-drr-grid-layout, mentioned in comment

50rayn avatar Sep 07 '22 21:09 50rayn