UNPKG

vue-dynamic-select

Version:

A VueJS plugin that provides a searchable and reactive select list component with no dependencies.

19 lines (18 loc) 597 B
import vue from 'rollup-plugin-vue'; // Handle .vue SFC files import buble from 'rollup-plugin-buble'; // Transpile/polyfill with reasonable browser support import commonjs from 'rollup-plugin-commonjs'; export default { input: 'src/index.js', // Path relative to package.json output: { name: 'DynamicSelect', exports: 'named', }, plugins: [ vue({ css: true, // Dynamically inject css as a <style> tag compileTemplate: true, // Explicitly convert template to render function }), buble(), commonjs() ], };