Help you quickly create a component library.
- 🚀 dev with
Vite
✈️ build withesbuild
- 🚁 generate types with
ts-morph
- 🌈 Speedy dev & build
- 🎆 Customize friendly
- 📝 More beautiful doc, support
Chinese
andEnglish
. SupportDark Mode
by vueuse - 🍭 Rich scripts, inspired by esbuild-plugin-vue & vue-dts-gen
- 😋 Type friendly
- 🚚
ESM
&CJS
product
Generate a repository by vuecompoent-seed
yarn
Benefited from
vite-plugin-pages
, thesrc/pages/index.vue
is the entry page for development. You can visit/[component-name]/demo
to check component, likehttp://localhost:3000/#/button/demo
.
yarn dev
yarn build
yarn test
The entry file is the
input
option for rollup.
yarn gen-entry
A component's name is required for this command.
yarn gen [component\'s name]
npx esno ./scripts/gen-dts.ts
This command will add git tag、generate changelog. You can test your lib with argument
--dry
yarn release [--dry]
❗ Noted: you should run
yarn build:lib
before run this command. Because the docs need the build bundle.
yarn docs:dev
yarn docs:build
Here is a git action. When you push the code to the master
branch, the document will be automatically deployed on gh-pages
branch.
Then you can set the Github Pages's source on the gh-pages
branch.
Take button as an example.
In button.md
, insert the following code
<demo-wrapper
src="src/packages/button/demo"
:demos="demos"
/>
<script setup>
const demos = import.meta.globEager('../../../src/packages/button/demo/demo*.vue')
</script>
There is a global component DemoWrapper
to display all demos.
This is currently the only way to show demo. More info.
You can add the class
in frontmatter, then the <Content>
would inherit the class
. Of course, the windicss
can be used here.
---
class: 'custom-class'
---
<script setup>
is a feature that is currently in RFC stage. To get proper IDE support for the syntax, use Volar instead of Vetur (and disable Vetur).
eeeeelle |
---|