mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-15 03:06:25 +08:00

* style(eslint-config): add rules to restrict the imports of element-plus * chore: added validation for tsx files * chore: revert the shell
804 B
804 B
title | lang |
---|---|
Local Development | en-US |
Local Development
Bootstrap project
With command
pnpm i
the project will install all dependencies.
Website preview
With command
pnpm docs:dev
the project will launch website for you to preview all existing component.
Local development
- With command
pnpm dev
will start the local development environment.
- Add your component into
play/src/App.vue
<template>
<ComponentYouAreDeveloping />
</template>
<script setup lang="ts">
// make sure this component is registered in @element-plus/components
</script>
Modify App.vue
file per your needs to get things work.