UNPKG

@inkline/vue-cli-plugin-inkline

Version:

Vue CLI Plugin for Inkline, the intuitive UI Components library that gives you the foundation for building high-quality, accessible, and customizable Vue.js Design Systems.

11 lines (9 loc) 249 B
const vue2 = require('./vue2.js'); const vue3 = require('./vue3.js'); module.exports = (api, options, rootOptions) => { if (options.vue2) { vue2(api, options, rootOptions); } else { vue3(api, options, rootOptions); } };