Skip to content

Instantly share code, notes, and snippets.

@thombergs
Created August 26, 2020 02:01
Show Gist options
  • Save thombergs/3eb42b59e3e5860a224353de4b0a7e16 to your computer and use it in GitHub Desktop.
Save thombergs/3eb42b59e3e5860a224353de4b0a7e16 to your computer and use it in GitHub Desktop.
Creating a library with multiple Vue components
import TimeSeriesChart from "../components/time-series-chart/TimeSeriesChart.vue";
// import additional components here
export {
TimeSeriesChart
// add additional components here
};
{
...
"scripts": {
"build:charts-lib": "vue-cli-service build --target lib --dest build/dist/charts --name charts src/libs/charts.js",
...
},}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment