vue-library-template
vue-library-template copied to clipboard
Webpack setup for building & publishing a Vue component/library (with docs/demo site) for other developers to import into their projects. Uses Vue-cli and is based on the Vuejs webpack template.
my idea is that I put all our components in this library and reference the library from vue.js projects. is this the point of this project? how do I reference...
When using assets like png, svg, or jpeg they won't be included in the final package. Is there any way to get around this? Example: A.vue ```vue import logo from...
Using the airbnb linter caused lint errors. Also, putting ```Vue.use(Beufy)``` within the imports when using the linter caused the dev server to error. This fixes both issues.
I am trying to make use of Ag-Grid and Ag-Grid-Vue within a component without luck. Any advise would be appreciated. > [Vue warn]: You are using the runtime-only build of...
Hi @prograhammer i really want to ask some question here, when i do build, i got 2 folders which is `docs` and `lib`. but when i do `npm run dev`...
- [x] When build library, `peerDependencies` should be excludes (https://nodejs.org/en/blog/npm/peer-dependencies/) In my project, I put `vue` as peerDependencies, so it's not included in build library. This will keep library size...
**description** i see that a redundant file is created in the when choosing *not* to use stylus, under `src/styles/lib.styl` (it's created empty). **steps to reproduce** *this was my case, but...
Will you use vuecli 3 with typescript ? :) Thanks.
By default the project will exports default a single component and when consumed by another project it works fine and the case is correctly applied. But when exporting more than...
Hi, Is there an easy way to create individual imports for every component in my library? So instead of doing something like `import { someComp } from 'MyLibrary'` I'd like...