我如何在 Nuxt.js 中使用拖放插件?
How can i use Drag and drop plugins in Nuxt.js?
我正在寻找教我如何实现拖放效果的教程
Vue-draggable
smooth-dnd在Nuxtjs的一个项目中。对于样式,我使用的是 Tailwind CSS.
如果您想要流畅的拖放操作,可以安装 vue-smooth-dnd package by going through nuxt plugins。
// nuxt.config.js
module.exports = {
plugins: ['~/plugins/vue-smooth-dnd.js']
}
这样,它就可以准确地使用 as show in the docs。
编辑
实际上,您可以直接将其用作(在您的 .vue
组件中)
import { Container, Draggable } from "vue-smooth-dnd"
无需更多配置。它将按组件划分范围,不会按大小爆炸。
我正在寻找教我如何实现拖放效果的教程 Vue-draggable smooth-dnd在Nuxtjs的一个项目中。对于样式,我使用的是 Tailwind CSS.
如果您想要流畅的拖放操作,可以安装 vue-smooth-dnd package by going through nuxt plugins。
// nuxt.config.js
module.exports = {
plugins: ['~/plugins/vue-smooth-dnd.js']
}
这样,它就可以准确地使用 as show in the docs。
编辑
实际上,您可以直接将其用作(在您的 .vue
组件中)
import { Container, Draggable } from "vue-smooth-dnd"
无需更多配置。它将按组件划分范围,不会按大小爆炸。