vue-react-dnd
Version:
Vue Drag and Drop Library based on react-dnd
18 lines (16 loc) • 422 B
JavaScript
import vue from 'rollup-plugin-vue'
import buble from 'rollup-plugin-buble'
export default {
input: 'src/index.js', // Path relative to package.json
output: {
name: 'VueReactDnd',
exports: 'named'
},
plugins: [
vue({
css: true, // Dynamically inject css as a <style> tag
compileTemplate: true // Explicitly convert template to render function
}),
buble() // Transpile to ES5
]
}