Files
element-plus/docs/en-US/guide/dev-guide.md
iamkun 6890afc149 chore: add missing docs (#10185)
Revert "chore: rm error doc (#10180)"

This reverts commit ceef0a56ecab9535096636a74b8677fcb7039b3b.
2022-10-21 14:48:25 +00:00

874 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

See Local development guide

  1. With command
pnpm dev

will start the local development environment.

  1. Add your component into play/src/App.vue

App.vue

<template>
  <ComponentYouAreDeveloping />
</template>

<script setup lang="ts">
// make sure this component is registered in @element-plus/components
import { ComponentYouAreDeveloping } from '@element-plus/components'
</script>

Modify App.vue file per your needs to get things work.